Skip to content

ccajas/Meteor-Rendering-Engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meteor Graphics Rendering Engine

A custom graphics engine for XNA

Deferred and Light Pre-Pass Rendering

###Overview of Meteor Rendering Engine

The Meteor rendering engine is developed in C# with XNA 4.0, and provides various rendering setups in which to display 3D scenes quickly and easily. The example setups provided are deferred rendering and light pre-pass rendering, but you can just as well use your own.

Rendering setups, or "render profiles" are broken down into steps, which are presented as components which can be re-arranged and combined in several ways to provide the render output you need. You can also extend from existing components or make your own for your own custom renderer.

Interally, each render profile is a directed acyclic graph, with inputs and outputs grom each node forming the links to other nodes. The engine goes through one DAG sequence per frame, and it is possible to switch between different DAGs (render profiles) on the fly. It is possible to load several different profiles and update them to adapt to a different situation, if rendering requirements change.

You can find some details of the engine process in my blog, Electronic Meteor.

This engine is very much a work-in-progress, so there is no release candidate and many refinements to some of the core files are still underway. For now, only the bare engine code and sample components are available. This can be compiled as a library which you can use for your existing program.

You may need the library produced by the XNA Skinned Animation sample if you want to support that in the engine. I will soon provide sample code for a working application that uses it. The included fonts use the Nuclex Spritefont processor, but if you don't have it/don't want to use it, you can simply use the built-in Spritefont processor.

Here are some of the features all created with the sample renderers.

Deferred and Light Pre-Pass Rendering

Terrain rendering with geo-mipmapping (work in progress)

Terrain rendering with geo-mipmapping

Gamma Correction

Gamma correction

Post-Processing Effects

Post-processing effects

About

A custom graphics engine for XNA

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published