Implementation of DirectX9 as a rendering system. More...
#include <OgreD3D11RenderSystem.h>
Classes | |
struct | sD3DTextureStageDesc |
structure holding texture unit settings for every stage More... | |
Public Types | |
typedef MapIterator < Ogre::RenderTargetMap > | RenderTargetIterator |
Iterator over RenderTargets. | |
Public Member Functions | |
D3D11RenderSystem (HINSTANCE hInstance) | |
~D3D11RenderSystem () | |
void | initRenderSystem () |
virtual void | initConfigOptions (void) |
ConfigOptionMap & | getConfigOptions (void) |
Returns the details of this API's configuration options. | |
String | validateConfigOptions (void) |
Validates the options set for the rendering system, returning a message if there are problems. | |
RenderWindow * | _initialise (bool autoCreateWindow, const String &windowTitle="OGRE Render Window") |
Start up the renderer using the settings selected (Or the defaults if none have been selected). | |
RenderWindow * | _createRenderWindow (const String &name, unsigned int width, unsigned int height, bool fullScreen, const NameValuePairList *miscParams=0) |
RenderTexture * | createRenderTexture (const String &name, unsigned int width, unsigned int height, TextureType texType=TEX_TYPE_2D, PixelFormat internalFormat=PF_X8R8G8B8, const NameValuePairList *miscParams=0) |
virtual MultiRenderTarget * | createMultiRenderTarget (const String &name) |
virtual DepthBuffer * | _createDepthBufferFor (RenderTarget *renderTarget) |
Creates a DepthBuffer that can be attached to the specified RenderTarget. | |
DepthBuffer * | _addManualDepthBuffer (ID3D11DepthStencilView *depthSurface, uint32 width, uint32 height, uint32 fsaa, uint32 fsaaQuality) |
This function is meant to add Depth Buffers to the pool that aren't released when the DepthBuffer is deleted. | |
const String & | getName (void) const |
Returns the name of the rendering system. | |
void | setConfigOption (const String &name, const String &value) |
Sets an option for this API. | |
void | reinitialise () |
Restart the renderer (normally following a change in settings). | |
void | shutdown () |
Shutdown the renderer and cleanup resources. | |
void | setAmbientLight (float r, float g, float b) |
Sets the colour & strength of the ambient (global directionless) light in the world. | |
void | setShadingType (ShadeOptions so) |
Sets the type of light shading required (default = Gouraud). | |
void | setLightingEnabled (bool enabled) |
Sets whether or not dynamic lighting is enabled. | |
void | destroyRenderTarget (const String &name) |
Destroys a render target of any sort. | |
VertexElementType | getColourVertexElementType (void) const |
Get the native VertexElementType for a compact 32-bit colour value for this rendersystem. | |
void | setStencilCheckEnabled (bool enabled) |
Turns stencil buffer checking on or off. | |
void | setStencilBufferParams (CompareFunction func=CMPF_ALWAYS_PASS, uint32 refValue=0, uint32 mask=0xFFFFFFFF, StencilOperation stencilFailOp=SOP_KEEP, StencilOperation depthFailOp=SOP_KEEP, StencilOperation passOp=SOP_KEEP, bool twoSidedOperation=false) |
Determines if this system supports hardware accelerated stencil buffer. | |
void | setNormaliseNormals (bool normalise) |
Sets whether or not normals are to be automatically normalised. | |
virtual String | getErrorDescription (long errorNumber) const |
Returns a description of an error code. | |
D3D11HLSLProgram * | _getBoundVertexProgram () const |
D3D11HLSLProgram * | _getBoundFragmentProgram () const |
D3D11HLSLProgram * | _getBoundGeometryProgram () const |
void | _useLights (const LightList &lights, unsigned short limit) |
Tells the rendersystem to use the attached set of lights (and no others) up to the number specified (this allows the same list to be used with different count limits) | |
void | _setWorldMatrix (const Matrix4 &m) |
Sets the world transform matrix. | |
void | _setViewMatrix (const Matrix4 &m) |
Sets the view transform matrix. | |
void | _setProjectionMatrix (const Matrix4 &m) |
Sets the projection transform matrix. | |
void | _setSurfaceParams (const ColourValue &ambient, const ColourValue &diffuse, const ColourValue &specular, const ColourValue &emissive, Real shininess, TrackVertexColourType tracking) |
Sets the surface properties to be used for future rendering. | |
void | _setPointSpritesEnabled (bool enabled) |
Sets whether or not rendering points using OT_POINT_LIST will render point sprites (textured quads) or plain points. | |
void | _setPointParameters (Real size, bool attenuationEnabled, Real constant, Real linear, Real quadratic, Real minSize, Real maxSize) |
Sets the size of points and how they are attenuated with distance. | |
void | _setTexture (size_t unit, bool enabled, const TexturePtr &texPtr) |
Sets the texture to bind to a given texture unit. | |
void | _setVertexTexture (size_t unit, const TexturePtr &tex) |
Binds a texture to a vertex sampler. | |
void | _disableTextureUnit (size_t texUnit) |
Turns off a texture unit. | |
void | _setTextureCoordSet (size_t unit, size_t index) |
Sets the texture coordinate set to use for a texture unit. | |
void | _setTextureCoordCalculation (size_t unit, TexCoordCalcMethod m, const Frustum *frustum=0) |
Sets a method for automatically calculating texture coordinates for a stage. | |
void | _setTextureBlendMode (size_t unit, const LayerBlendModeEx &bm) |
Sets the texture blend modes from a TextureUnitState record. | |
void | _setTextureAddressingMode (size_t stage, const TextureUnitState::UVWAddressingMode &uvw) |
Sets the texture addressing mode for a texture unit. | |
void | _setTextureBorderColour (size_t stage, const ColourValue &colour) |
Sets the texture border colour for a texture unit. | |
void | _setTextureMipmapBias (size_t unit, float bias) |
Sets the mipmap bias value for a given texture unit. | |
void | _setTextureMatrix (size_t unit, const Matrix4 &xform) |
Sets the texture coordinate transformation matrix for a texture unit. | |
void | _setSceneBlending (SceneBlendFactor sourceFactor, SceneBlendFactor destFactor, SceneBlendOperation op=SBO_ADD) |
Sets the global blending factors for combining subsequent renders with the existing frame contents. | |
void | _setSeparateSceneBlending (SceneBlendFactor sourceFactor, SceneBlendFactor destFactor, SceneBlendFactor sourceFactorAlpha, SceneBlendFactor destFactorAlpha, SceneBlendOperation op=SBO_ADD, SceneBlendOperation alphaOp=SBO_ADD) |
Sets the global blending factors for combining subsequent renders with the existing frame contents. | |
void | _setAlphaRejectSettings (CompareFunction func, unsigned char value, bool alphaToCoverage) |
Sets the global alpha rejection approach for future renders. | |
void | _setViewport (Viewport *vp) |
Sets the provided viewport as the active one for future rendering operations. | |
void | _beginFrame (void) |
Signifies the beginning of a frame, i.e. | |
void | _endFrame (void) |
Ends rendering of a frame to the current viewport. | |
void | _setCullingMode (CullingMode mode) |
Sets the culling mode for the render system based on the 'vertex winding'. | |
void | _setDepthBufferParams (bool depthTest=true, bool depthWrite=true, CompareFunction depthFunction=CMPF_LESS_EQUAL) |
Sets the mode of operation for depth buffer tests from this point onwards. | |
void | _setDepthBufferCheckEnabled (bool enabled=true) |
Sets whether or not the depth buffer check is performed before a pixel write. | |
bool | _getDepthBufferCheckEnabled (void) |
void | _setColourBufferWriteEnabled (bool red, bool green, bool blue, bool alpha) |
Sets whether or not colour buffer writing is enabled, and for which channels. | |
void | _setDepthBufferWriteEnabled (bool enabled=true) |
Sets whether or not the depth buffer is updated after a pixel write. | |
void | _setDepthBufferFunction (CompareFunction func=CMPF_LESS_EQUAL) |
Sets the comparison function for the depth buffer check. | |
void | _setDepthBias (float constantBias, float slopeScaleBias) |
Sets the depth bias, NB you should use the Material version of this. | |
void | _setFog (FogMode mode=FOG_NONE, const ColourValue &colour=ColourValue::White, Real expDensity=1.0, Real linearStart=0.0, Real linearEnd=1.0) |
Sets the fogging mode for future geometry. | |
void | _convertProjectionMatrix (const Matrix4 &matrix, Matrix4 &dest, bool forGpuProgram=false) |
Converts a uniform projection matrix to suitable for this render system. | |
void | _makeProjectionMatrix (const Radian &fovy, Real aspect, Real nearPlane, Real farPlane, Matrix4 &dest, bool forGpuProgram=false) |
Builds a perspective projection matrix suitable for this render system. | |
void | _makeProjectionMatrix (Real left, Real right, Real bottom, Real top, Real nearPlane, Real farPlane, Matrix4 &dest, bool forGpuProgram=false) |
Builds a perspective projection matrix for the case when frustum is not centered around camera. | |
void | _makeOrthoMatrix (const Radian &fovy, Real aspect, Real nearPlane, Real farPlane, Matrix4 &dest, bool forGpuProgram=false) |
Builds an orthographic projection matrix suitable for this render system. | |
void | _applyObliqueDepthProjection (Matrix4 &matrix, const Plane &plane, bool forGpuProgram) |
Update a perspective projection matrix to use 'oblique depth projection'. | |
void | _setPolygonMode (PolygonMode level) |
Sets how to rasterise triangles, as points, wireframe or solid polys. | |
void | _setTextureUnitFiltering (size_t unit, FilterType ftype, FilterOptions filter) |
Sets a single filter for a given texture unit. | |
void | _setTextureLayerAnisotropy (size_t unit, unsigned int maxAnisotropy) |
Sets the maximal anisotropy for the specified texture unit. | |
void | setVertexDeclaration (VertexDeclaration *decl) |
Sets the current vertex declaration, ie the source of vertex data. | |
void | setVertexDeclaration (VertexDeclaration *decl, VertexBufferBinding *binding) |
void | setVertexBufferBinding (VertexBufferBinding *binding) |
Sets the current vertex buffer binding state. | |
void | _render (const RenderOperation &op) |
Render something to the active viewport. | |
void | bindGpuProgram (GpuProgram *prg) |
See RenderSystem. | |
void | unbindGpuProgram (GpuProgramType gptype) |
See RenderSystem. | |
void | bindGpuProgramParameters (GpuProgramType gptype, GpuProgramParametersSharedPtr params, uint16 mask) |
See RenderSystem. | |
void | bindGpuProgramPassIterationParameters (GpuProgramType gptype) |
See RenderSystem. | |
void | setScissorTest (bool enabled, size_t left=0, size_t top=0, size_t right=800, size_t bottom=600) |
Sets the 'scissor region' ie the region of the target in which rendering can take place. | |
void | clearFrameBuffer (unsigned int buffers, const ColourValue &colour=ColourValue::Black, Real depth=1.0f, unsigned short stencil=0) |
Clears one or more frame buffers on the active render target. | |
void | setClipPlane (ushort index, Real A, Real B, Real C, Real D) |
void | enableClipPlane (ushort index, bool enable) |
HardwareOcclusionQuery * | createHardwareOcclusionQuery (void) |
Create an object for performing hardware occlusion queries. | |
Real | getHorizontalTexelOffset (void) |
Returns the horizontal texel offset value required for mapping texel origins to pixel origins in this rendersystem. | |
Real | getVerticalTexelOffset (void) |
Returns the vertical texel offset value required for mapping texel origins to pixel origins in this rendersystem. | |
Real | getMinimumDepthInputValue (void) |
Gets the minimum (closest) depth value to be used when rendering using identity transforms. | |
Real | getMaximumDepthInputValue (void) |
Gets the maximum (farthest) depth value to be used when rendering using identity transforms. | |
void | registerThread () |
Register the an additional thread which may make calls to rendersystem-related objects. | |
void | unregisterThread () |
Unregister an additional thread which may make calls to rendersystem-related objects. | |
void | preExtraThreadsStarted () |
Tell the rendersystem to perform any prep tasks it needs to directly before other threads which might access the rendering API are registered. | |
void | postExtraThreadsStarted () |
void | _setRenderTarget (RenderTarget *target) |
Set current render target to target, enabling its GL context if needed. | |
bool | _checkTextureFilteringSupported (TextureType ttype, PixelFormat format, int usage) |
Check whether or not filtering is supported for the precise texture format requested with the given usage options. | |
void | determineFSAASettings (uint fsaa, const String &fsaaHint, DXGI_FORMAT format, DXGI_SAMPLE_DESC *outFSAASettings) |
unsigned int | getDisplayMonitorCount () const |
virtual void | destroyHardwareOcclusionQuery (HardwareOcclusionQuery *hq) |
Destroy a hardware occlusion query object. | |
RenderSystemCapabilities * | getMutableCapabilities () |
Get a pointer to the current capabilities being used by the RenderSystem. | |
virtual void | useCustomRenderSystemCapabilities (RenderSystemCapabilities *capabilities) |
Force the render system to use the special capabilities. | |
void | setWBufferEnabled (bool enabled) |
Sets whether or not W-buffers are enabled if they are available for this renderer. | |
bool | getWBufferEnabled (void) const |
Returns true if the renderer will try to use W-buffers when avalible. | |
virtual bool | _createRenderWindows (const RenderWindowDescriptionList &renderWindowDescriptions, RenderWindowList &createdWindows) |
Creates multiple rendering windows. | |
virtual void | destroyRenderWindow (const String &name) |
Destroys a render window. | |
virtual void | destroyRenderTexture (const String &name) |
Destroys a render texture. | |
virtual void | attachRenderTarget (RenderTarget &target) |
Attaches the passed render target to the render system. | |
virtual RenderTarget * | getRenderTarget (const String &name) |
Returns a pointer to the render target with the passed name, or NULL if that render target cannot be found. | |
virtual RenderTarget * | detachRenderTarget (const String &name) |
Detaches the render target with the passed name from the render system and returns a pointer to it. | |
virtual RenderTargetIterator | getRenderTargetIterator (void) |
Returns a specialised MapIterator over all render targets attached to the RenderSystem. | |
void | setWaitForVerticalBlank (bool enabled) |
Defines whether or now fullscreen render windows wait for the vertical blank before flipping buffers. | |
bool | getWaitForVerticalBlank (void) const |
Returns true if the system is synchronising frames with the monitor vertical blank. | |
HardwareVertexBufferSharedPtr | getGlobalInstanceVertexBuffer () const |
Returns the global instance vertex buffer. | |
void | setGlobalInstanceVertexBuffer (const HardwareVertexBufferSharedPtr val) |
Sets the global instance vertex buffer. | |
VertexDeclaration * | getGlobalInstanceVertexBufferVertexDeclaration () const |
Gets vertex declaration for the global vertex buffer for the global instancing. | |
void | setGlobalInstanceVertexBufferVertexDeclaration (VertexDeclaration *val) |
Sets vertex declaration for the global vertex buffer for the global instancing. | |
size_t | getGlobalNumberOfInstances () const |
Gets the global number of instances. | |
void | setGlobalNumberOfInstances (const size_t val) |
Sets the global number of instances. | |
virtual void | setDepthBufferFor (RenderTarget *renderTarget) |
Retrieves an existing DepthBuffer or creates a new one suited for the given RenderTarget and sets it. | |
virtual bool | areFixedFunctionLightsInViewSpace () const |
Are fixed-function lights provided in view space? Affects optimisation. | |
virtual void | _setWorldMatrices (const Matrix4 *m, unsigned short count) |
Sets multiple world matrices (vertex blending). | |
virtual void | _setTextureUnitSettings (size_t texUnit, TextureUnitState &tl) |
Utility function for setting all the properties of a texture unit at once. | |
virtual void | _disableTextureUnitsFrom (size_t texUnit) |
Disables all texture units from the given unit upwards. | |
virtual void | _setTexture (size_t unit, bool enabled, const String &texname) |
Sets the texture to bind to a given texture unit. | |
virtual void | _setTextureUnitFiltering (size_t unit, FilterOptions minFilter, FilterOptions magFilter, FilterOptions mipFilter) |
Sets the filtering options for a given texture unit. | |
virtual void | _setTextureProjectionRelativeTo (bool enabled, const Vector3 &pos) |
Notify the rendersystem that it should adjust texture projection to be relative to a different origin. | |
void | _cleanupDepthBuffers (bool bCleanManualBuffers=true) |
Removes all depth buffers. | |
virtual RenderSystemContext * | _pauseFrame (void) |
Pause rendering for a frame. | |
virtual void | _resumeFrame (RenderSystemContext *context) |
Resume rendering for a frame. | |
virtual Viewport * | _getViewport (void) |
Get the current active viewport for rendering. | |
virtual CullingMode | _getCullingMode (void) const |
virtual void | _beginGeometryCount (void) |
The RenderSystem will keep a count of tris rendered, this resets the count. | |
virtual unsigned int | _getFaceCount (void) const |
Reports the number of tris rendered since the last _beginGeometryCount call. | |
virtual unsigned int | _getBatchCount (void) const |
Reports the number of batches rendered since the last _beginGeometryCount call. | |
virtual unsigned int | _getVertexCount (void) const |
Reports the number of vertices passed to the renderer since the last _beginGeometryCount call. | |
virtual void | convertColourValue (const ColourValue &colour, uint32 *pDest) |
Generates a packed data version of the passed in ColourValue suitable for use as with this RenderSystem. | |
const RenderSystemCapabilities * | getCapabilities (void) const |
Gets the capabilities of the render system. | |
virtual const DriverVersion & | getDriverVersion (void) const |
Returns the driver version. | |
virtual const String & | _getDefaultViewportMaterialScheme (void) const |
Returns the default material scheme used by the render system. | |
virtual bool | isGpuProgramBound (GpuProgramType gptype) |
Returns whether or not a Gpu program of the given type is currently bound. | |
virtual void | setClipPlanes (const PlaneList &clipPlanes) |
Sets the user clipping region. | |
virtual void | addClipPlane (const Plane &p) |
Add a user clipping plane. | |
virtual void | addClipPlane (Real A, Real B, Real C, Real D) |
Add a user clipping plane. | |
virtual void | resetClipPlanes () |
Clears the user clipping region. | |
virtual void | _initRenderTargets (void) |
Utility method for initialising all render targets attached to this rendering system. | |
virtual void | _notifyCameraRemoved (const Camera *cam) |
Utility method to notify all render targets that a camera has been removed, in case they were referring to it as their viewer. | |
virtual void | _updateAllRenderTargets (bool swapBuffers=true) |
Internal method for updating all render targets attached to this rendering system. | |
virtual void | _swapAllRenderTargetBuffers (bool waitForVsync=true) |
Internal method for swapping all the buffers on all render targets, if _updateAllRenderTargets was called with a 'false' parameter. | |
virtual void | setInvertVertexWinding (bool invert) |
Sets whether or not vertex windings set should be inverted; this can be important for rendering reflections. | |
virtual bool | getInvertVertexWinding (void) const |
Indicates whether or not the vertex windings set will be inverted for the current render (e.g. | |
virtual void | setCurrentPassIterationCount (const size_t count) |
set the current multi pass count value. | |
virtual void | setDeriveDepthBias (bool derive, float baseValue=0.0f, float multiplier=0.0f, float slopeScale=0.0f) |
Tell the render system whether to derive a depth bias on its own based on the values passed to it in setCurrentPassIterationCount. | |
virtual void | addListener (Listener *l) |
Adds a listener to the custom events that this render system can raise. | |
virtual void | removeListener (Listener *l) |
Remove a listener to the custom events that this render system can raise. | |
virtual const StringVector & | getRenderSystemEvents (void) const |
Gets a list of the rendersystem specific events that this rendersystem can raise. | |
void * | operator new (size_t sz, const char *file, int line, const char *func) |
operator new, with debug line info | |
void * | operator new (size_t sz) |
void * | operator new (size_t sz, void *ptr) |
placement operator new | |
void * | operator new[] (size_t sz, const char *file, int line, const char *func) |
array operator new, with debug line info | |
void * | operator new[] (size_t sz) |
void | operator delete (void *ptr) |
void | operator delete (void *ptr, void *) |
void | operator delete (void *ptr, const char *, int, const char *) |
void | operator delete[] (void *ptr) |
void | operator delete[] (void *ptr, const char *, int, const char *) |
Protected Types | |
typedef list< Listener * >::type | ListenerList |
typedef list < HardwareOcclusionQuery * > ::type | HardwareOcclusionQueryList |
Protected Member Functions | |
void | setClipPlanesImpl (const PlaneList &clipPlanes) |
Internal method used to set the underlying clip planes when needed. | |
bool | updatePassIterationRenderState (void) |
updates pass iteration rendering state including bound gpu program parameter pass iteration auto constant entry | |
virtual void | fireEvent (const String &name, const NameValuePairList *params=0) |
Internal method for firing a rendersystem event. | |
Protected Attributes | |
DepthBufferMap | mDepthBufferPool |
DepthBuffers to be attached to render targets. | |
RenderTargetMap | mRenderTargets |
The render targets. | |
RenderTargetPriorityMap | mPrioritisedRenderTargets |
The render targets, ordered by priority. | |
RenderTarget * | mActiveRenderTarget |
The Active render target. | |
GpuProgramParametersSharedPtr | mActiveVertexGpuProgramParameters |
The Active GPU programs and gpu program parameters. | |
GpuProgramParametersSharedPtr | mActiveGeometryGpuProgramParameters |
GpuProgramParametersSharedPtr | mActiveFragmentGpuProgramParameters |
TextureManager * | mTextureManager |
Viewport * | mActiveViewport |
CullingMode | mCullingMode |
bool | mVSync |
unsigned int | mVSyncInterval |
bool | mWBuffer |
size_t | mBatchCount |
size_t | mFaceCount |
size_t | mVertexCount |
ColourValue | mManualBlendColours [OGRE_MAX_TEXTURE_LAYERS][2] |
Saved manual colour blends. | |
bool | mInvertVertexWinding |
size_t | mDisabledTexUnitsFrom |
Texture units from this upwards are disabled. | |
size_t | mCurrentPassIterationCount |
number of times to render the current state | |
size_t | mCurrentPassIterationNum |
bool | mDerivedDepthBias |
Whether to update the depth bias per render call. | |
float | mDerivedDepthBiasBase |
float | mDerivedDepthBiasMultiplier |
float | mDerivedDepthBiasSlopeScale |
HardwareVertexBufferSharedPtr | mGlobalInstanceVertexBuffer |
a global vertex buffer for global instancing | |
VertexDeclaration * | mGlobalInstanceVertexBufferVertexDeclaration |
a vertex declaration for the global vertex buffer for the global instancing | |
size_t | mGlobalNumberOfInstances |
the number of global instances (this number will be multiply by the render op instance number) | |
StringVector | mEventNames |
List of names of events this rendersystem may raise. | |
ListenerList | mEventListeners |
HardwareOcclusionQueryList | mHwOcclusionQueries |
bool | mVertexProgramBound |
bool | mGeometryProgramBound |
bool | mFragmentProgramBound |
PlaneList | mClipPlanes |
bool | mClipPlanesDirty |
RenderSystemCapabilities * | mRealCapabilities |
Used to store the capabilities of the graphics card. | |
RenderSystemCapabilities * | mCurrentCapabilities |
bool | mUseCustomCapabilities |
DriverVersion | mDriverVersion |
bool | mTexProjRelative |
Vector3 | mTexProjRelativeOrigin |
Private Types | |
enum | OGRE_D3D11_DRIVER_TYPE { DT_HARDWARE, DT_SOFTWARE, DT_WARP } |
typedef vector < D3D11RenderWindow * >::type | SecondaryWindowList |
Private Member Functions | |
D3D11DriverList * | getDirect3DDrivers (void) |
structure holding texture unit settings for every stage | |
void | refreshD3DSettings (void) |
void | refreshFSAAOptions (void) |
void | freeDevice (void) |
void | initInputDevices (void) |
void | processInputDevices (void) |
DWORD | _getCurrentAnisotropy (size_t unit) |
return anisotropy level | |
bool | _checkMultiSampleQuality (UINT SampleCount, UINT *outQuality, DXGI_FORMAT format) |
check if a FSAA is supported | |
RenderSystemCapabilities * | createRenderSystemCapabilities () const |
Internal method for populating the capabilities structure. | |
void | initialiseFromRenderSystemCapabilities (RenderSystemCapabilities *caps, RenderTarget *primary) |
See RenderSystem definition. | |
void | convertVertexShaderCaps (RenderSystemCapabilities *rsc) const |
void | convertPixelShaderCaps (RenderSystemCapabilities *rsc) const |
void | convertGeometryShaderCaps (RenderSystemCapabilities *rsc) const |
bool | checkVertexTextureFormats (void) |
Private Attributes | |
OGRE_D3D11_DRIVER_TYPE | mDriverType |
D3D11Device | mDevice |
Direct3D. | |
ConfigOptionMap | mOptions |
HINSTANCE | mhInstance |
instance | |
D3D11DriverList * | mDriverList |
List of D3D drivers installed (video cards) | |
D3D11Driver * | mActiveD3DDriver |
Currently active driver. | |
bool | mUseNVPerfHUD |
NVPerfHUD allowed? | |
bool | mPerStageConstantSupport |
Per-stage constant support? (not in main caps since D3D specific & minor) | |
D3D11HardwareBufferManager * | mHardwareBufferManager |
D3D11GpuProgramManager * | mGpuProgramManager |
D3D11HLSLProgramFactory * | mHLSLProgramFactory |
size_t | mLastVertexSourceCount |
CompareFunction | mSceneAlphaRejectFunc |
unsigned char | mSceneAlphaRejectValue |
bool | mSceneAlphaToCoverage |
D3D11_BLEND_DESC | mBlendDesc |
D3D11_RASTERIZER_DESC | mRasterizerDesc |
UINT | mStencilRef |
D3D11_DEPTH_STENCIL_DESC | mDepthStencilDesc |
PolygonMode | mPolygonMode |
FilterOptions | FilterMinification |
FilterOptions | FilterMagnification |
FilterOptions | FilterMips |
D3D11_RECT | mScissorRect |
D3D11HLSLProgram * | mBoundVertexProgram |
D3D11HLSLProgram * | mBoundFragmentProgram |
D3D11HLSLProgram * | mBoundGeometryProgram |
ID3D11BlendState * | mBoundBlendState |
ID3D11RasterizerState * | mBoundRasterizer |
ID3D11DepthStencilState * | mBoundDepthStencilState |
ID3D11SamplerState * | mBoundSamplerStates [OGRE_MAX_TEXTURE_LAYERS] |
size_t | mBoundSamplerStatesCount |
ID3D11ShaderResourceView * | mBoundTextures [OGRE_MAX_TEXTURE_LAYERS] |
size_t | mBoundTexturesCount |
struct Ogre::D3D11RenderSystem::sD3DTextureStageDesc | mTexStageDesc [OGRE_MAX_TEXTURE_LAYERS] |
D3D11RenderWindow * | mPrimaryWindow |
Primary window, the one used to create the device. | |
SecondaryWindowList | mSecondaryWindows |
bool | mBasicStatesInitialised |
bool | mRenderSystemWasInited |
IDXGIFactory1 * | mpDXGIFactory |
Implementation of DirectX9 as a rendering system.
Definition at line 46 of file OgreD3D11RenderSystem.h.
typedef list<HardwareOcclusionQuery*>::type Ogre::RenderSystem::HardwareOcclusionQueryList [protected, inherited] |
Definition at line 1536 of file OgreRenderSystem.h.
typedef list<Listener*>::type Ogre::RenderSystem::ListenerList [protected, inherited] |
Definition at line 1533 of file OgreRenderSystem.h.
typedef MapIterator<Ogre::RenderTargetMap> Ogre::RenderSystem::RenderTargetIterator [inherited] |
Iterator over RenderTargets.
Definition at line 558 of file OgreRenderSystem.h.
typedef vector<D3D11RenderWindow*>::type Ogre::D3D11RenderSystem::SecondaryWindowList [private] |
Definition at line 181 of file OgreD3D11RenderSystem.h.
enum Ogre::D3D11RenderSystem::OGRE_D3D11_DRIVER_TYPE [private] |
Definition at line 51 of file OgreD3D11RenderSystem.h.
Ogre::D3D11RenderSystem::D3D11RenderSystem | ( | HINSTANCE | hInstance | ) |
DepthBuffer* Ogre::D3D11RenderSystem::_addManualDepthBuffer | ( | ID3D11DepthStencilView * | depthSurface, |
uint32 | width, | ||
uint32 | height, | ||
uint32 | fsaa, | ||
uint32 | fsaaQuality | ||
) |
This function is meant to add Depth Buffers to the pool that aren't released when the DepthBuffer is deleted.
This is specially useful to put the Depth Buffer created along with the window's back buffer into the pool. All depth buffers introduced with this method go to POOL_DEFAULT
void Ogre::D3D11RenderSystem::_applyObliqueDepthProjection | ( | Matrix4 & | matrix, |
const Plane & | plane, | ||
bool | forGpuProgram | ||
) | [virtual] |
Update a perspective projection matrix to use 'oblique depth projection'.
matrix | The existing projection matrix. Note that this must be a perspective transform (not orthographic), and must not have already been altered by this method. The matrix will be altered in-place. |
plane | The plane which is to be used as the clipping plane. This plane must be in CAMERA (view) space. |
forGpuProgram | Is this for use with a Gpu program or fixed-function |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_beginFrame | ( | void | ) | [virtual] |
Signifies the beginning of a frame, i.e.
the start of rendering on a single viewport. Will occur several times per complete frame if multiple viewports exist.
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_beginGeometryCount | ( | void | ) | [virtual, inherited] |
The RenderSystem will keep a count of tris rendered, this resets the count.
bool Ogre::D3D11RenderSystem::_checkMultiSampleQuality | ( | UINT | SampleCount, |
UINT * | outQuality, | ||
DXGI_FORMAT | format | ||
) | [private] |
check if a FSAA is supported
bool Ogre::D3D11RenderSystem::_checkTextureFilteringSupported | ( | TextureType | ttype, |
PixelFormat | format, | ||
int | usage | ||
) |
Check whether or not filtering is supported for the precise texture format requested with the given usage options.
void Ogre::RenderSystem::_cleanupDepthBuffers | ( | bool | bCleanManualBuffers = true | ) | [inherited] |
Removes all depth buffers.
Should be called on device lost and shutdown
void Ogre::D3D11RenderSystem::_convertProjectionMatrix | ( | const Matrix4 & | matrix, |
Matrix4 & | dest, | ||
bool | forGpuProgram = false |
||
) | [virtual] |
Converts a uniform projection matrix to suitable for this render system.
Implements Ogre::RenderSystem.
virtual DepthBuffer* Ogre::D3D11RenderSystem::_createDepthBufferFor | ( | RenderTarget * | renderTarget | ) | [virtual] |
Creates a DepthBuffer that can be attached to the specified RenderTarget.
Implements Ogre::RenderSystem.
RenderWindow* Ogre::D3D11RenderSystem::_createRenderWindow | ( | const String & | name, |
unsigned int | width, | ||
unsigned int | height, | ||
bool | fullScreen, | ||
const NameValuePairList * | miscParams = 0 |
||
) | [virtual] |
Creates a new rendering window.
name | The name of the window. Used in other methods later like setRenderTarget and getRenderTarget. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
width | The width of the new window. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
height | The height of the new window. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fullScreen | Specify true to make the window full screen without borders, title bar or menu bar. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
miscParams | A NameValuePairList describing the other parameters for the new rendering window. Options are case sensitive. Unrecognised parameters will be ignored silently. These values might be platform dependent, but these are present for all platforms unless indicated otherwise:
|
Implements Ogre::RenderSystem.
virtual bool Ogre::RenderSystem::_createRenderWindows | ( | const RenderWindowDescriptionList & | renderWindowDescriptions, |
RenderWindowList & | createdWindows | ||
) | [virtual, inherited] |
Creates multiple rendering windows.
renderWindowDescriptions | Array of structures containing the descriptions of each render window. The structure's members are the same as the parameters of _createRenderWindow: name width height fullScreen miscParams See _createRenderWindow for details about each member. |
createdWindows | This array will hold the created render windows. |
Reimplemented in Ogre::GLRenderSystem, and Ogre::D3D9RenderSystem.
void Ogre::D3D11RenderSystem::_disableTextureUnit | ( | size_t | texUnit | ) | [virtual] |
Turns off a texture unit.
Reimplemented from Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_disableTextureUnitsFrom | ( | size_t | texUnit | ) | [virtual, inherited] |
Disables all texture units from the given unit upwards.
void Ogre::D3D11RenderSystem::_endFrame | ( | void | ) | [virtual] |
Ends rendering of a frame to the current viewport.
Implements Ogre::RenderSystem.
virtual unsigned int Ogre::RenderSystem::_getBatchCount | ( | void | ) | const [virtual, inherited] |
Reports the number of batches rendered since the last _beginGeometryCount call.
virtual CullingMode Ogre::RenderSystem::_getCullingMode | ( | void | ) | const [virtual, inherited] |
DWORD Ogre::D3D11RenderSystem::_getCurrentAnisotropy | ( | size_t | unit | ) | [private] |
return anisotropy level
virtual const String& Ogre::RenderSystem::_getDefaultViewportMaterialScheme | ( | void | ) | const [virtual, inherited] |
Returns the default material scheme used by the render system.
Systems that use the RTSS to emulate a fixed function pipeline (e.g. OpenGL ES 2, DX11) need to override this function to return the default material scheme of the RTSS ShaderGenerator.
This is currently only used to set the default material scheme for viewports. It is a necessary step on these render systems for render textures to be rendered into properly.
bool Ogre::D3D11RenderSystem::_getDepthBufferCheckEnabled | ( | void | ) |
virtual unsigned int Ogre::RenderSystem::_getFaceCount | ( | void | ) | const [virtual, inherited] |
Reports the number of tris rendered since the last _beginGeometryCount call.
virtual unsigned int Ogre::RenderSystem::_getVertexCount | ( | void | ) | const [virtual, inherited] |
Reports the number of vertices passed to the renderer since the last _beginGeometryCount call.
virtual Viewport* Ogre::RenderSystem::_getViewport | ( | void | ) | [virtual, inherited] |
Get the current active viewport for rendering.
RenderWindow* Ogre::D3D11RenderSystem::_initialise | ( | bool | autoCreateWindow, |
const String & | windowTitle = "OGRE Render Window" |
||
) | [virtual] |
Start up the renderer using the settings selected (Or the defaults if none have been selected).
autoCreateWindow | If true, creates a render window automatically, based on settings chosen so far. This saves an extra call to _createRenderWindow for the main render window. |
Reimplemented from Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_initRenderTargets | ( | void | ) | [virtual, inherited] |
Utility method for initialising all render targets attached to this rendering system.
void Ogre::D3D11RenderSystem::_makeOrthoMatrix | ( | const Radian & | fovy, |
Real | aspect, | ||
Real | nearPlane, | ||
Real | farPlane, | ||
Matrix4 & | dest, | ||
bool | forGpuProgram = false |
||
) | [virtual] |
Builds an orthographic projection matrix suitable for this render system.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_makeProjectionMatrix | ( | const Radian & | fovy, |
Real | aspect, | ||
Real | nearPlane, | ||
Real | farPlane, | ||
Matrix4 & | dest, | ||
bool | forGpuProgram = false |
||
) | [virtual] |
Builds a perspective projection matrix suitable for this render system.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_makeProjectionMatrix | ( | Real | left, |
Real | right, | ||
Real | bottom, | ||
Real | top, | ||
Real | nearPlane, | ||
Real | farPlane, | ||
Matrix4 & | dest, | ||
bool | forGpuProgram = false |
||
) | [virtual] |
Builds a perspective projection matrix for the case when frustum is not centered around camera.
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_notifyCameraRemoved | ( | const Camera * | cam | ) | [virtual, inherited] |
Utility method to notify all render targets that a camera has been removed, in case they were referring to it as their viewer.
virtual RenderSystemContext* Ogre::RenderSystem::_pauseFrame | ( | void | ) | [virtual, inherited] |
Pause rendering for a frame.
This has to be called after _beginFrame and before _endFrame. Will usually be called by the SceneManager, don't use this manually unless you know what you are doing.
Reimplemented in Ogre::D3D9RenderSystem.
void Ogre::D3D11RenderSystem::_render | ( | const RenderOperation & | op | ) | [virtual] |
Render something to the active viewport.
Low-level rendering interface to perform rendering operations. Unlikely to be used directly by client applications, since the SceneManager and various support classes will be responsible for calling this method. Can only be called between _beginScene and _endScene
op | A rendering operation instance, which contains details of the operation to be performed. |
Reimplemented from Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_resumeFrame | ( | RenderSystemContext * | context | ) | [virtual, inherited] |
Resume rendering for a frame.
This has to be called after a _pauseFrame call Will usually be called by the SceneManager, don't use this manually unless you know what you are doing.
context | the render system context, as returned by _pauseFrame |
Reimplemented in Ogre::D3D9RenderSystem.
void Ogre::D3D11RenderSystem::_setAlphaRejectSettings | ( | CompareFunction | func, |
unsigned char | value, | ||
bool | alphaToCoverage | ||
) | [virtual] |
Sets the global alpha rejection approach for future renders.
By default images are rendered regardless of texture alpha. This method lets you change that.
func | The comparison function which must pass for a pixel to be written. |
val | The value to compare each pixels alpha value to (0-255) |
alphaToCoverage | Whether to enable alpha to coverage, if supported |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setColourBufferWriteEnabled | ( | bool | red, |
bool | green, | ||
bool | blue, | ||
bool | alpha | ||
) | [virtual] |
Sets whether or not colour buffer writing is enabled, and for which channels.
red,green,blue,alpha | Whether writing is enabled for each of the 4 colour channels. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setCullingMode | ( | CullingMode | mode | ) | [virtual] |
Sets the culling mode for the render system based on the 'vertex winding'.
A typical way for the rendering engine to cull triangles is based on the 'vertex winding' of triangles. Vertex winding refers to the direction in which the vertices are passed or indexed to in the rendering operation as viewed from the camera, and will wither be clockwise or anticlockwise (that's 'counterclockwise' for you Americans out there ;) The default is CULL_CLOCKWISE i.e. that only triangles whose vertices are passed/indexed in anticlockwise order are rendered - this is a common approach and is used in 3D studio models for example. You can alter this culling mode if you wish but it is not advised unless you know what you are doing. You may wish to use the CULL_NONE option for mesh data that you cull yourself where the vertex winding is uncertain.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setDepthBias | ( | float | constantBias, |
float | slopeScaleBias | ||
) | [virtual] |
Sets the depth bias, NB you should use the Material version of this.
constantBias | The constant bias value, expressed as a value in homogeneous depth coordinates. |
slopeScaleBias | The bias value which is factored by the maximum slope of the polygon, see the description above. This is not supported by all cards. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setDepthBufferCheckEnabled | ( | bool | enabled = true | ) | [virtual] |
Sets whether or not the depth buffer check is performed before a pixel write.
enabled | If true, the depth buffer is tested for each pixel and the frame buffer is only updated if the depth function test succeeds. If false, no test is performed and pixels are always written. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setDepthBufferFunction | ( | CompareFunction | func = CMPF_LESS_EQUAL | ) | [virtual] |
Sets the comparison function for the depth buffer check.
Advanced use only - allows you to choose the function applied to compare the depth values of new and existing pixels in the depth buffer. Only an issue if the deoth buffer check is enabled (see _setDepthBufferCheckEnabled)
func | The comparison between the new depth and the existing depth which must return true for the new pixel to be written. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setDepthBufferParams | ( | bool | depthTest = true , |
bool | depthWrite = true , |
||
CompareFunction | depthFunction = CMPF_LESS_EQUAL |
||
) | [virtual] |
Sets the mode of operation for depth buffer tests from this point onwards.
Sometimes you may wish to alter the behaviour of the depth buffer to achieve special effects. Because it's unlikely that you'll set these options for an entire frame, but rather use them to tweak settings between rendering objects, this is an internal method (indicated by the '_' prefix) which will be used by a SceneManager implementation rather than directly from the client application. If this method is never called the settings are automatically the same as the default parameters.
depthTest | If true, the depth buffer is tested for each pixel and the frame buffer is only updated if the depth function test succeeds. If false, no test is performed and pixels are always written. |
depthWrite | If true, the depth buffer is updated with the depth of the new pixel if the depth test succeeds. If false, the depth buffer is left unchanged even if a new pixel is written. |
depthFunction | Sets the function required for the depth test. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setDepthBufferWriteEnabled | ( | bool | enabled = true | ) | [virtual] |
Sets whether or not the depth buffer is updated after a pixel write.
enabled | If true, the depth buffer is updated with the depth of the new pixel if the depth test succeeds. If false, the depth buffer is left unchanged even if a new pixel is written. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setFog | ( | FogMode | mode = FOG_NONE , |
const ColourValue & | colour = ColourValue::White , |
||
Real | expDensity = 1.0 , |
||
Real | linearStart = 0.0 , |
||
Real | linearEnd = 1.0 |
||
) | [virtual] |
Sets the fogging mode for future geometry.
mode | Set up the mode of fog as described in the FogMode enum, or set to FOG_NONE to turn off. |
colour | The colour of the fog. Either set this to the same as your viewport background colour, or to blend in with a skydome or skybox. |
expDensity | The density of the fog in FOG_EXP or FOG_EXP2 mode, as a value between 0 and 1. The default is 1. i.e. completely opaque, lower values can mean that fog never completely obscures the scene. |
linearStart | Distance at which linear fog starts to encroach. The distance must be passed as a parametric value between 0 and 1, with 0 being the near clipping plane, and 1 being the far clipping plane. Only applicable if mode is FOG_LINEAR. |
linearEnd | Distance at which linear fog becomes completely opaque.The distance must be passed as a parametric value between 0 and 1, with 0 being the near clipping plane, and 1 being the far clipping plane. Only applicable if mode is FOG_LINEAR. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setPointParameters | ( | Real | size, |
bool | attenuationEnabled, | ||
Real | constant, | ||
Real | linear, | ||
Real | quadratic, | ||
Real | minSize, | ||
Real | maxSize | ||
) | [virtual] |
Sets the size of points and how they are attenuated with distance.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setPointSpritesEnabled | ( | bool | enabled | ) | [virtual] |
Sets whether or not rendering points using OT_POINT_LIST will render point sprites (textured quads) or plain points.
enabled | True enables point sprites, false returns to normal point rendering. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setPolygonMode | ( | PolygonMode | level | ) | [virtual] |
Sets how to rasterise triangles, as points, wireframe or solid polys.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setProjectionMatrix | ( | const Matrix4 & | m | ) | [virtual] |
Sets the projection transform matrix.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setRenderTarget | ( | RenderTarget * | target | ) | [virtual] |
Set current render target to target, enabling its GL context if needed.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setSceneBlending | ( | SceneBlendFactor | sourceFactor, |
SceneBlendFactor | destFactor, | ||
SceneBlendOperation | op = SBO_ADD |
||
) | [virtual] |
Sets the global blending factors for combining subsequent renders with the existing frame contents.
The result of the blending operation is:
final = (texture * sourceFactor) + (pixel * destFactor) Each of the factors is specified as one of a number of options, as specified in the SceneBlendFactor enumerated type. By changing the operation you can change addition between the source and destination pixels to a different operator.
sourceFactor | The source factor in the above calculation, i.e. multiplied by the texture colour components. |
destFactor | The destination factor in the above calculation, i.e. multiplied by the pixel colour components. |
op | The blend operation mode for combining pixels |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setSeparateSceneBlending | ( | SceneBlendFactor | sourceFactor, |
SceneBlendFactor | destFactor, | ||
SceneBlendFactor | sourceFactorAlpha, | ||
SceneBlendFactor | destFactorAlpha, | ||
SceneBlendOperation | op = SBO_ADD , |
||
SceneBlendOperation | alphaOp = SBO_ADD |
||
) | [virtual] |
Sets the global blending factors for combining subsequent renders with the existing frame contents.
The result of the blending operation is:
final = (texture * sourceFactor) + (pixel * destFactor) Each of the factors is specified as one of a number of options, as specified in the SceneBlendFactor enumerated type.
sourceFactor | The source factor in the above calculation, i.e. multiplied by the texture colour components. |
destFactor | The destination factor in the above calculation, i.e. multiplied by the pixel colour components. |
sourceFactorAlpha | The source factor in the above calculation for the alpha channel, i.e. multiplied by the texture alpha components. |
destFactorAlpha | The destination factor in the above calculation for the alpha channel, i.e. multiplied by the pixel alpha components. |
op | The blend operation mode for combining pixels |
alphaOp | The blend operation mode for combining pixel alpha values |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setSurfaceParams | ( | const ColourValue & | ambient, |
const ColourValue & | diffuse, | ||
const ColourValue & | specular, | ||
const ColourValue & | emissive, | ||
Real | shininess, | ||
TrackVertexColourType | tracking | ||
) | [virtual] |
Sets the surface properties to be used for future rendering.
This method sets the the properties of the surfaces of objects to be rendered after it. In this context these surface properties are the amount of each type of light the object reflects (determining it's colour under different types of light), whether it emits light itself, and how shiny it is. Textures are not dealt with here, see the _setTetxure method for details. This method is used by _setMaterial so does not need to be called direct if that method is being used.
ambient | The amount of ambient (sourceless and directionless) light an object reflects. Affected by the colour/amount of ambient light in the scene. |
diffuse | The amount of light from directed sources that is reflected (affected by colour/amount of point, directed and spot light sources) |
specular | The amount of specular light reflected. This is also affected by directed light sources but represents the colour at the highlights of the object. |
emissive | The colour of light emitted from the object. Note that this will make an object seem brighter and not dependent on lights in the scene, but it will not act as a light, so will not illuminate other objects. Use a light attached to the same SceneNode as the object for this purpose. |
shininess | A value which only has an effect on specular highlights (so specular must be non-black). The higher this value, the smaller and crisper the specular highlights will be, imitating a more highly polished surface. This value is not constrained to 0.0-1.0, in fact it is likely to be more (10.0 gives a modest sheen to an object). |
tracking | A bit field that describes which of the ambient, diffuse, specular and emissive colours follow the vertex colour of the primitive. When a bit in this field is set its ColourValue is ignored. This is a combination of TVC_AMBIENT, TVC_DIFFUSE, TVC_SPECULAR(note that the shininess value is still taken from shininess) and TVC_EMISSIVE. TVC_NONE means that there will be no material property tracking the vertex colours. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTexture | ( | size_t | unit, |
bool | enabled, | ||
const TexturePtr & | texPtr | ||
) | [virtual] |
Sets the texture to bind to a given texture unit.
User processes would not normally call this direct unless rendering primitives themselves.
unit | The index of the texture unit to modify. Multitexturing hardware can support multiple units (see RenderSystemCapabilites::getNumTextureUnits) |
enabled | Boolean to turn the unit on/off |
texPtr | Pointer to the texture to use. |
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_setTexture | ( | size_t | unit, |
bool | enabled, | ||
const String & | texname | ||
) | [virtual, inherited] |
Sets the texture to bind to a given texture unit.
User processes would not normally call this direct unless rendering primitives themselves.
unit | The index of the texture unit to modify. Multitexturing hardware can support multiple units (see RenderSystemCapabilites::getNumTextureUnits) |
enabled | Boolean to turn the unit on/off |
texname | The name of the texture to use - this should have already been loaded with TextureManager::load. |
void Ogre::D3D11RenderSystem::_setTextureAddressingMode | ( | size_t | unit, |
const TextureUnitState::UVWAddressingMode & | uvw | ||
) | [virtual] |
Sets the texture addressing mode for a texture unit.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTextureBlendMode | ( | size_t | unit, |
const LayerBlendModeEx & | bm | ||
) | [virtual] |
Sets the texture blend modes from a TextureUnitState record.
Meant for use internally only - apps should use the Material and TextureUnitState classes.
unit | Texture unit as above |
bm | Details of the blending mode |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTextureBorderColour | ( | size_t | unit, |
const ColourValue & | colour | ||
) | [virtual] |
Sets the texture border colour for a texture unit.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTextureCoordCalculation | ( | size_t | unit, |
TexCoordCalcMethod | m, | ||
const Frustum * | frustum = 0 |
||
) | [virtual] |
Sets a method for automatically calculating texture coordinates for a stage.
Should not be used by apps - for use by Ogre only.
unit | Texture unit as above |
m | Calculation method to use |
frustum | Optional Frustum param, only used for projective effects |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTextureCoordSet | ( | size_t | unit, |
size_t | index | ||
) | [virtual] |
Sets the texture coordinate set to use for a texture unit.
Meant for use internally - not generally used directly by apps - the Material and TextureUnitState classes let you manage textures far more easily.
unit | Texture unit as above |
index | The index of the texture coordinate set to use. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTextureLayerAnisotropy | ( | size_t | unit, |
unsigned int | maxAnisotropy | ||
) | [virtual] |
Sets the maximal anisotropy for the specified texture unit.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTextureMatrix | ( | size_t | unit, |
const Matrix4 & | xform | ||
) | [virtual] |
Sets the texture coordinate transformation matrix for a texture unit.
unit | Texture unit to affect |
xform | The 4x4 matrix |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setTextureMipmapBias | ( | size_t | unit, |
float | bias | ||
) | [virtual] |
Sets the mipmap bias value for a given texture unit.
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_setTextureProjectionRelativeTo | ( | bool | enabled, |
const Vector3 & | pos | ||
) | [virtual, inherited] |
Notify the rendersystem that it should adjust texture projection to be relative to a different origin.
void Ogre::D3D11RenderSystem::_setTextureUnitFiltering | ( | size_t | unit, |
FilterType | ftype, | ||
FilterOptions | filter | ||
) | [virtual] |
Sets a single filter for a given texture unit.
unit | The texture unit to set the filtering options for |
ftype | The filter type |
filter | The filter to be used |
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_setTextureUnitFiltering | ( | size_t | unit, |
FilterOptions | minFilter, | ||
FilterOptions | magFilter, | ||
FilterOptions | mipFilter | ||
) | [virtual, inherited] |
Sets the filtering options for a given texture unit.
unit | The texture unit to set the filtering options for |
minFilter | The filter used when a texture is reduced in size |
magFilter | The filter used when a texture is magnified |
mipFilter | The filter used between mipmap levels, FO_NONE disables mipmapping |
virtual void Ogre::RenderSystem::_setTextureUnitSettings | ( | size_t | texUnit, |
TextureUnitState & | tl | ||
) | [virtual, inherited] |
Utility function for setting all the properties of a texture unit at once.
This method is also worth using over the individual texture unit settings because it only sets those settings which are different from the current settings for this unit, thus minimising render state changes.
void Ogre::D3D11RenderSystem::_setVertexTexture | ( | size_t | unit, |
const TexturePtr & | tex | ||
) | [virtual] |
Binds a texture to a vertex sampler.
Reimplemented from Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setViewMatrix | ( | const Matrix4 & | m | ) | [virtual] |
Sets the view transform matrix.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::_setViewport | ( | Viewport * | vp | ) | [virtual] |
Sets the provided viewport as the active one for future rendering operations.
This viewport is aware of it's own camera and render target. Must be implemented by subclass.
target | Pointer to the appropriate viewport. |
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_setWorldMatrices | ( | const Matrix4 * | m, |
unsigned short | count | ||
) | [virtual, inherited] |
Sets multiple world matrices (vertex blending).
void Ogre::D3D11RenderSystem::_setWorldMatrix | ( | const Matrix4 & | m | ) | [virtual] |
Sets the world transform matrix.
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::_swapAllRenderTargetBuffers | ( | bool | waitForVsync = true | ) | [virtual, inherited] |
Internal method for swapping all the buffers on all render targets, if _updateAllRenderTargets was called with a 'false' parameter.
virtual void Ogre::RenderSystem::_updateAllRenderTargets | ( | bool | swapBuffers = true | ) | [virtual, inherited] |
Internal method for updating all render targets attached to this rendering system.
void Ogre::D3D11RenderSystem::_useLights | ( | const LightList & | lights, |
unsigned short | limit | ||
) | [virtual] |
Tells the rendersystem to use the attached set of lights (and no others) up to the number specified (this allows the same list to be used with different count limits)
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::addClipPlane | ( | const Plane & | p | ) | [virtual, inherited] |
Add a user clipping plane.
virtual void Ogre::RenderSystem::addClipPlane | ( | Real | A, |
Real | B, | ||
Real | C, | ||
Real | D | ||
) | [virtual, inherited] |
Add a user clipping plane.
virtual void Ogre::RenderSystem::addListener | ( | Listener * | l | ) | [virtual, inherited] |
Adds a listener to the custom events that this render system can raise.
virtual bool Ogre::RenderSystem::areFixedFunctionLightsInViewSpace | ( | ) | const [virtual, inherited] |
Are fixed-function lights provided in view space? Affects optimisation.
Reimplemented in Ogre::GLESRenderSystem, Ogre::GLRenderSystem, and Ogre::GLES2RenderSystem.
Definition at line 636 of file OgreRenderSystem.h.
virtual void Ogre::RenderSystem::attachRenderTarget | ( | RenderTarget & | target | ) | [virtual, inherited] |
Attaches the passed render target to the render system.
void Ogre::D3D11RenderSystem::bindGpuProgram | ( | GpuProgram * | prg | ) | [virtual] |
See RenderSystem.
Reimplemented from Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::bindGpuProgramParameters | ( | GpuProgramType | gptype, |
GpuProgramParametersSharedPtr | params, | ||
uint16 | mask | ||
) | [virtual] |
See RenderSystem.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::bindGpuProgramPassIterationParameters | ( | GpuProgramType | gptype | ) | [virtual] |
See RenderSystem.
Implements Ogre::RenderSystem.
bool Ogre::D3D11RenderSystem::checkVertexTextureFormats | ( | void | ) | [private] |
void Ogre::D3D11RenderSystem::clearFrameBuffer | ( | unsigned int | buffers, |
const ColourValue & | colour = ColourValue::Black , |
||
Real | depth = 1.0f , |
||
unsigned short | stencil = 0 |
||
) | [virtual] |
Clears one or more frame buffers on the active render target.
buffers | Combination of one or more elements of FrameBufferType denoting which buffers are to be cleared |
colour | The colour to clear the colour buffer with, if enabled |
depth | The value to initialise the depth buffer with, if enabled |
stencil | The value to initialise the stencil buffer with, if enabled. |
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::convertColourValue | ( | const ColourValue & | colour, |
uint32 * | pDest | ||
) | [virtual, inherited] |
Generates a packed data version of the passed in ColourValue suitable for use as with this RenderSystem.
colour | The colour to convert |
pDest | Pointer to location to put the result. |
void Ogre::D3D11RenderSystem::convertGeometryShaderCaps | ( | RenderSystemCapabilities * | rsc | ) | const [private] |
void Ogre::D3D11RenderSystem::convertPixelShaderCaps | ( | RenderSystemCapabilities * | rsc | ) | const [private] |
void Ogre::D3D11RenderSystem::convertVertexShaderCaps | ( | RenderSystemCapabilities * | rsc | ) | const [private] |
HardwareOcclusionQuery* Ogre::D3D11RenderSystem::createHardwareOcclusionQuery | ( | void | ) | [virtual] |
Create an object for performing hardware occlusion queries.
Implements Ogre::RenderSystem.
virtual MultiRenderTarget* Ogre::D3D11RenderSystem::createMultiRenderTarget | ( | const String & | name | ) | [virtual] |
Create a MultiRenderTarget, which is a render target that renders to multiple RenderTextures at once.
Surfaces can be bound and unbound at will. This fails if mCapabilities->getNumMultiRenderTargets() is smaller than 2.
Implements Ogre::RenderSystem.
RenderSystemCapabilities* Ogre::D3D11RenderSystem::createRenderSystemCapabilities | ( | ) | const [private, virtual] |
Internal method for populating the capabilities structure.
Implements Ogre::RenderSystem.
RenderTexture* Ogre::D3D11RenderSystem::createRenderTexture | ( | const String & | name, |
unsigned int | width, | ||
unsigned int | height, | ||
TextureType | texType = TEX_TYPE_2D , |
||
PixelFormat | internalFormat = PF_X8R8G8B8 , |
||
const NameValuePairList * | miscParams = 0 |
||
) |
virtual void Ogre::RenderSystem::destroyHardwareOcclusionQuery | ( | HardwareOcclusionQuery * | hq | ) | [virtual, inherited] |
Destroy a hardware occlusion query object.
void Ogre::D3D11RenderSystem::destroyRenderTarget | ( | const String & | name | ) | [virtual] |
Destroys a render target of any sort.
Reimplemented from Ogre::RenderSystem.
virtual void Ogre::RenderSystem::destroyRenderTexture | ( | const String & | name | ) | [virtual, inherited] |
Destroys a render texture.
virtual void Ogre::RenderSystem::destroyRenderWindow | ( | const String & | name | ) | [virtual, inherited] |
Destroys a render window.
virtual RenderTarget* Ogre::RenderSystem::detachRenderTarget | ( | const String & | name | ) | [virtual, inherited] |
Detaches the render target with the passed name from the render system and returns a pointer to it.
void Ogre::D3D11RenderSystem::determineFSAASettings | ( | uint | fsaa, |
const String & | fsaaHint, | ||
DXGI_FORMAT | format, | ||
DXGI_SAMPLE_DESC * | outFSAASettings | ||
) |
void Ogre::D3D11RenderSystem::enableClipPlane | ( | ushort | index, |
bool | enable | ||
) |
virtual void Ogre::RenderSystem::fireEvent | ( | const String & | name, |
const NameValuePairList * | params = 0 |
||
) | [protected, virtual, inherited] |
Internal method for firing a rendersystem event.
void Ogre::D3D11RenderSystem::freeDevice | ( | void | ) | [private] |
const RenderSystemCapabilities* Ogre::RenderSystem::getCapabilities | ( | void | ) | const [inherited] |
Gets the capabilities of the render system.
Definition at line 1193 of file OgreRenderSystem.h.
VertexElementType Ogre::D3D11RenderSystem::getColourVertexElementType | ( | void | ) | const [virtual] |
Get the native VertexElementType for a compact 32-bit colour value for this rendersystem.
Implements Ogre::RenderSystem.
ConfigOptionMap& Ogre::D3D11RenderSystem::getConfigOptions | ( | void | ) | [virtual] |
Returns the details of this API's configuration options.
Implements Ogre::RenderSystem.
D3D11DriverList* Ogre::D3D11RenderSystem::getDirect3DDrivers | ( | void | ) | [private] |
structure holding texture unit settings for every stage
unsigned int Ogre::D3D11RenderSystem::getDisplayMonitorCount | ( | ) | const [virtual] |
Gets the number of display monitors.
Implements Ogre::RenderSystem.
Definition at line 354 of file OgreD3D11RenderSystem.h.
virtual const DriverVersion& Ogre::RenderSystem::getDriverVersion | ( | void | ) | const [virtual, inherited] |
Returns the driver version.
Definition at line 1198 of file OgreRenderSystem.h.
virtual String Ogre::D3D11RenderSystem::getErrorDescription | ( | long | errorNumber | ) | const [virtual] |
Returns a description of an error code.
Implements Ogre::RenderSystem.
HardwareVertexBufferSharedPtr Ogre::RenderSystem::getGlobalInstanceVertexBuffer | ( | ) | const [inherited] |
Returns the global instance vertex buffer.
VertexDeclaration* Ogre::RenderSystem::getGlobalInstanceVertexBufferVertexDeclaration | ( | ) | const [inherited] |
Gets vertex declaration for the global vertex buffer for the global instancing.
size_t Ogre::RenderSystem::getGlobalNumberOfInstances | ( | ) | const [inherited] |
Gets the global number of instances.
Real Ogre::D3D11RenderSystem::getHorizontalTexelOffset | ( | void | ) | [virtual] |
Returns the horizontal texel offset value required for mapping texel origins to pixel origins in this rendersystem.
Implements Ogre::RenderSystem.
virtual bool Ogre::RenderSystem::getInvertVertexWinding | ( | void | ) | const [virtual, inherited] |
Indicates whether or not the vertex windings set will be inverted for the current render (e.g.
reflections)
Real Ogre::D3D11RenderSystem::getMaximumDepthInputValue | ( | void | ) | [virtual] |
Gets the maximum (farthest) depth value to be used when rendering using identity transforms.
Implements Ogre::RenderSystem.
Real Ogre::D3D11RenderSystem::getMinimumDepthInputValue | ( | void | ) | [virtual] |
Gets the minimum (closest) depth value to be used when rendering using identity transforms.
Implements Ogre::RenderSystem.
RenderSystemCapabilities* Ogre::RenderSystem::getMutableCapabilities | ( | ) | [inherited] |
Get a pointer to the current capabilities being used by the RenderSystem.
Definition at line 226 of file OgreRenderSystem.h.
const String& Ogre::D3D11RenderSystem::getName | ( | void | ) | const [virtual] |
Returns the name of the rendering system.
Implements Ogre::RenderSystem.
virtual const StringVector& Ogre::RenderSystem::getRenderSystemEvents | ( | void | ) | const [virtual, inherited] |
Gets a list of the rendersystem specific events that this rendersystem can raise.
Definition at line 1406 of file OgreRenderSystem.h.
virtual RenderTarget* Ogre::RenderSystem::getRenderTarget | ( | const String & | name | ) | [virtual, inherited] |
Returns a pointer to the render target with the passed name, or NULL if that render target cannot be found.
virtual RenderTargetIterator Ogre::RenderSystem::getRenderTargetIterator | ( | void | ) | [virtual, inherited] |
Returns a specialised MapIterator over all render targets attached to the RenderSystem.
Definition at line 561 of file OgreRenderSystem.h.
Real Ogre::D3D11RenderSystem::getVerticalTexelOffset | ( | void | ) | [virtual] |
Returns the vertical texel offset value required for mapping texel origins to pixel origins in this rendersystem.
Implements Ogre::RenderSystem.
bool Ogre::RenderSystem::getWaitForVerticalBlank | ( | void | ) | const [inherited] |
Returns true if the system is synchronising frames with the monitor vertical blank.
bool Ogre::RenderSystem::getWBufferEnabled | ( | void | ) | const [inherited] |
Returns true if the renderer will try to use W-buffers when avalible.
virtual void Ogre::D3D11RenderSystem::initConfigOptions | ( | void | ) | [virtual] |
void Ogre::D3D11RenderSystem::initialiseFromRenderSystemCapabilities | ( | RenderSystemCapabilities * | caps, |
RenderTarget * | primary | ||
) | [private, virtual] |
See RenderSystem definition.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::initInputDevices | ( | void | ) | [private] |
virtual bool Ogre::RenderSystem::isGpuProgramBound | ( | GpuProgramType | gptype | ) | [virtual, inherited] |
Returns whether or not a Gpu program of the given type is currently bound.
void Ogre::AllocatedObject< Alloc >::operator delete | ( | void * | ptr | ) | [inherited] |
Definition at line 95 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete | ( | void * | ptr, |
void * | |||
) | [inherited] |
Definition at line 101 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete | ( | void * | ptr, |
const char * | , | ||
int | , | ||
const char * | |||
) | [inherited] |
Definition at line 107 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete[] | ( | void * | ptr | ) | [inherited] |
Definition at line 112 of file OgreMemoryAllocatedObject.h.
void Ogre::AllocatedObject< Alloc >::operator delete[] | ( | void * | ptr, |
const char * | , | ||
int | , | ||
const char * | |||
) | [inherited] |
Definition at line 118 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new | ( | size_t | sz, |
const char * | file, | ||
int | line, | ||
const char * | func | ||
) | [inherited] |
operator new, with debug line info
Definition at line 67 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new | ( | size_t | sz | ) | [inherited] |
Definition at line 72 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new | ( | size_t | sz, |
void * | ptr | ||
) | [inherited] |
placement operator new
Definition at line 78 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new[] | ( | size_t | sz, |
const char * | file, | ||
int | line, | ||
const char * | func | ||
) | [inherited] |
array operator new, with debug line info
Definition at line 85 of file OgreMemoryAllocatedObject.h.
void* Ogre::AllocatedObject< Alloc >::operator new[] | ( | size_t | sz | ) | [inherited] |
Definition at line 90 of file OgreMemoryAllocatedObject.h.
void Ogre::D3D11RenderSystem::postExtraThreadsStarted | ( | ) | [virtual] |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::preExtraThreadsStarted | ( | ) | [virtual] |
Tell the rendersystem to perform any prep tasks it needs to directly before other threads which might access the rendering API are registered.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::processInputDevices | ( | void | ) | [private] |
void Ogre::D3D11RenderSystem::refreshD3DSettings | ( | void | ) | [private] |
void Ogre::D3D11RenderSystem::refreshFSAAOptions | ( | void | ) | [private] |
void Ogre::D3D11RenderSystem::registerThread | ( | ) | [virtual] |
Register the an additional thread which may make calls to rendersystem-related objects.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::reinitialise | ( | ) | [virtual] |
Restart the renderer (normally following a change in settings).
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::removeListener | ( | Listener * | l | ) | [virtual, inherited] |
Remove a listener to the custom events that this render system can raise.
virtual void Ogre::RenderSystem::resetClipPlanes | ( | ) | [virtual, inherited] |
Clears the user clipping region.
void Ogre::D3D11RenderSystem::setAmbientLight | ( | float | r, |
float | g, | ||
float | b | ||
) | [virtual] |
Sets the colour & strength of the ambient (global directionless) light in the world.
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::setClipPlanes | ( | const PlaneList & | clipPlanes | ) | [virtual, inherited] |
Sets the user clipping region.
void Ogre::D3D11RenderSystem::setClipPlanesImpl | ( | const PlaneList & | clipPlanes | ) | [protected, virtual] |
Internal method used to set the underlying clip planes when needed.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setConfigOption | ( | const String & | name, |
const String & | value | ||
) | [virtual] |
Sets an option for this API.
name | The name of the option to alter. |
value | The value to set the option to. |
Implements Ogre::RenderSystem.
virtual void Ogre::RenderSystem::setCurrentPassIterationCount | ( | const size_t | count | ) | [virtual, inherited] |
set the current multi pass count value.
This must be set prior to calling _render() if multiple renderings of the same pass state are required.
count | Number of times to render the current state. |
Definition at line 1341 of file OgreRenderSystem.h.
virtual void Ogre::RenderSystem::setDepthBufferFor | ( | RenderTarget * | renderTarget | ) | [virtual, inherited] |
Retrieves an existing DepthBuffer or creates a new one suited for the given RenderTarget and sets it.
virtual void Ogre::RenderSystem::setDeriveDepthBias | ( | bool | derive, |
float | baseValue = 0.0f , |
||
float | multiplier = 0.0f , |
||
float | slopeScale = 0.0f |
||
) | [virtual, inherited] |
Tell the render system whether to derive a depth bias on its own based on the values passed to it in setCurrentPassIterationCount.
The depth bias set will be baseValue + iteration * multiplier
derive | True to tell the RS to derive this automatically |
baseValue | The base value to which the multiplier should be added |
multiplier | The amount of depth bias to apply per iteration |
slopeScale | The constant slope scale bias for completeness |
Definition at line 1352 of file OgreRenderSystem.h.
void Ogre::RenderSystem::setGlobalInstanceVertexBuffer | ( | const HardwareVertexBufferSharedPtr | val | ) | [inherited] |
Sets the global instance vertex buffer.
void Ogre::RenderSystem::setGlobalInstanceVertexBufferVertexDeclaration | ( | VertexDeclaration * | val | ) | [inherited] |
Sets vertex declaration for the global vertex buffer for the global instancing.
void Ogre::RenderSystem::setGlobalNumberOfInstances | ( | const size_t | val | ) | [inherited] |
Sets the global number of instances.
virtual void Ogre::RenderSystem::setInvertVertexWinding | ( | bool | invert | ) | [virtual, inherited] |
Sets whether or not vertex windings set should be inverted; this can be important for rendering reflections.
void Ogre::D3D11RenderSystem::setLightingEnabled | ( | bool | enabled | ) | [virtual] |
Sets whether or not dynamic lighting is enabled.
enabled | If true, dynamic lighting is performed on geometry with normals supplied, geometry without normals will not be displayed. If false, no lighting is applied and all geometry will be full brightness. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setNormaliseNormals | ( | bool | normalise | ) | [virtual] |
Sets whether or not normals are to be automatically normalised.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setScissorTest | ( | bool | enabled, |
size_t | left = 0 , |
||
size_t | top = 0 , |
||
size_t | right = 800 , |
||
size_t | bottom = 600 |
||
) | [virtual] |
Sets the 'scissor region' ie the region of the target in which rendering can take place.
enabled | True to enable the scissor test, false to disable it. |
left,top,right,bottom | The location of the corners of the rectangle, expressed in pixels. |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setShadingType | ( | ShadeOptions | so | ) | [virtual] |
Sets the type of light shading required (default = Gouraud).
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setStencilBufferParams | ( | CompareFunction | func = CMPF_ALWAYS_PASS , |
uint32 | refValue = 0 , |
||
uint32 | mask = 0xFFFFFFFF , |
||
StencilOperation | stencilFailOp = SOP_KEEP , |
||
StencilOperation | depthFailOp = SOP_KEEP , |
||
StencilOperation | passOp = SOP_KEEP , |
||
bool | twoSidedOperation = false |
||
) | [virtual] |
Determines if this system supports hardware accelerated stencil buffer.
(Reference Value & Mask) CompareFunction (Stencil Buffer Value & Mask)The result of this will cause one of 3 actions depending on whether the test fails, succeeds but with the depth buffer check still failing, or succeeds with the depth buffer check passing too.
func | The comparison function applied. |
refValue | The reference value used in the comparison |
mask | The bitmask applied to both the stencil value and the reference value before comparison |
stencilFailOp | The action to perform when the stencil check fails |
depthFailOp | The action to perform when the stencil check passes, but the depth buffer check still fails |
passOp | The action to take when both the stencil and depth check pass. |
twoSidedOperation | If set to true, then if you render both back and front faces (you'll have to turn off culling) then these parameters will apply for front faces, and the inverse of them will happen for back faces (keep remains the same). |
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setStencilCheckEnabled | ( | bool | enabled | ) | [virtual] |
Turns stencil buffer checking on or off.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setVertexBufferBinding | ( | VertexBufferBinding * | binding | ) | [virtual] |
Sets the current vertex buffer binding state.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setVertexDeclaration | ( | VertexDeclaration * | decl | ) | [virtual] |
Sets the current vertex declaration, ie the source of vertex data.
Implements Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::setVertexDeclaration | ( | VertexDeclaration * | decl, |
VertexBufferBinding * | binding | ||
) |
void Ogre::RenderSystem::setWaitForVerticalBlank | ( | bool | enabled | ) | [inherited] |
Defines whether or now fullscreen render windows wait for the vertical blank before flipping buffers.
enabled | If true, the system waits for vertical blanks - quality over speed. If false it doesn't - speed over quality. |
void Ogre::RenderSystem::setWBufferEnabled | ( | bool | enabled | ) | [inherited] |
Sets whether or not W-buffers are enabled if they are available for this renderer.
enabled | If true and the renderer supports them W-buffers will be used. If false W-buffers will not be used even if available. W-buffers are enabled by default for 16bit depth buffers and disabled for all other depths. |
void Ogre::D3D11RenderSystem::shutdown | ( | ) | [virtual] |
Shutdown the renderer and cleanup resources.
Reimplemented from Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::unbindGpuProgram | ( | GpuProgramType | gptype | ) | [virtual] |
See RenderSystem.
Reimplemented from Ogre::RenderSystem.
void Ogre::D3D11RenderSystem::unregisterThread | ( | ) | [virtual] |
Unregister an additional thread which may make calls to rendersystem-related objects.
Implements Ogre::RenderSystem.
bool Ogre::RenderSystem::updatePassIterationRenderState | ( | void | ) | [protected, inherited] |
updates pass iteration rendering state including bound gpu program parameter pass iteration auto constant entry
virtual void Ogre::RenderSystem::useCustomRenderSystemCapabilities | ( | RenderSystemCapabilities * | capabilities | ) | [virtual, inherited] |
Force the render system to use the special capabilities.
Can only be called before the render system has been fully initializer (before createWindow is called)
capabilities | has to be a subset of the real capabilities and the caller is responsible for deallocating capabilities. |
String Ogre::D3D11RenderSystem::validateConfigOptions | ( | void | ) | [virtual] |
Validates the options set for the rendering system, returning a message if there are problems.
Implements Ogre::RenderSystem.
Definition at line 131 of file OgreD3D11RenderSystem.h.
Definition at line 130 of file OgreD3D11RenderSystem.h.
Definition at line 132 of file OgreD3D11RenderSystem.h.
Currently active driver.
Definition at line 75 of file OgreD3D11RenderSystem.h.
GpuProgramParametersSharedPtr Ogre::RenderSystem::mActiveFragmentGpuProgramParameters [protected, inherited] |
Definition at line 1471 of file OgreRenderSystem.h.
GpuProgramParametersSharedPtr Ogre::RenderSystem::mActiveGeometryGpuProgramParameters [protected, inherited] |
Definition at line 1470 of file OgreRenderSystem.h.
RenderTarget* Ogre::RenderSystem::mActiveRenderTarget [protected, inherited] |
The Active render target.
Definition at line 1466 of file OgreRenderSystem.h.
GpuProgramParametersSharedPtr Ogre::RenderSystem::mActiveVertexGpuProgramParameters [protected, inherited] |
The Active GPU programs and gpu program parameters.
Definition at line 1469 of file OgreRenderSystem.h.
Viewport* Ogre::RenderSystem::mActiveViewport [protected, inherited] |
Definition at line 1480 of file OgreRenderSystem.h.
bool Ogre::D3D11RenderSystem::mBasicStatesInitialised [private] |
Definition at line 185 of file OgreD3D11RenderSystem.h.
size_t Ogre::RenderSystem::mBatchCount [protected, inherited] |
Definition at line 1488 of file OgreRenderSystem.h.
D3D11_BLEND_DESC Ogre::D3D11RenderSystem::mBlendDesc [private] |
Definition at line 121 of file OgreD3D11RenderSystem.h.
ID3D11BlendState* Ogre::D3D11RenderSystem::mBoundBlendState [private] |
Definition at line 141 of file OgreD3D11RenderSystem.h.
ID3D11DepthStencilState* Ogre::D3D11RenderSystem::mBoundDepthStencilState [private] |
Definition at line 143 of file OgreD3D11RenderSystem.h.
Definition at line 138 of file OgreD3D11RenderSystem.h.
Definition at line 139 of file OgreD3D11RenderSystem.h.
ID3D11RasterizerState* Ogre::D3D11RenderSystem::mBoundRasterizer [private] |
Definition at line 142 of file OgreD3D11RenderSystem.h.
ID3D11SamplerState* Ogre::D3D11RenderSystem::mBoundSamplerStates[OGRE_MAX_TEXTURE_LAYERS] [private] |
Definition at line 144 of file OgreD3D11RenderSystem.h.
size_t Ogre::D3D11RenderSystem::mBoundSamplerStatesCount [private] |
Definition at line 145 of file OgreD3D11RenderSystem.h.
ID3D11ShaderResourceView* Ogre::D3D11RenderSystem::mBoundTextures[OGRE_MAX_TEXTURE_LAYERS] [private] |
Definition at line 147 of file OgreD3D11RenderSystem.h.
size_t Ogre::D3D11RenderSystem::mBoundTexturesCount [private] |
Definition at line 148 of file OgreD3D11RenderSystem.h.
Definition at line 137 of file OgreD3D11RenderSystem.h.
PlaneList Ogre::RenderSystem::mClipPlanes [protected, inherited] |
Definition at line 1544 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mClipPlanesDirty [protected, inherited] |
Definition at line 1546 of file OgreRenderSystem.h.
CullingMode Ogre::RenderSystem::mCullingMode [protected, inherited] |
Definition at line 1482 of file OgreRenderSystem.h.
RenderSystemCapabilities* Ogre::RenderSystem::mCurrentCapabilities [protected, inherited] |
Definition at line 1550 of file OgreRenderSystem.h.
size_t Ogre::RenderSystem::mCurrentPassIterationCount [protected, inherited] |
number of times to render the current state
Definition at line 1501 of file OgreRenderSystem.h.
size_t Ogre::RenderSystem::mCurrentPassIterationNum [protected, inherited] |
Definition at line 1502 of file OgreRenderSystem.h.
DepthBufferMap Ogre::RenderSystem::mDepthBufferPool [protected, inherited] |
DepthBuffers to be attached to render targets.
Definition at line 1459 of file OgreRenderSystem.h.
D3D11_DEPTH_STENCIL_DESC Ogre::D3D11RenderSystem::mDepthStencilDesc [private] |
Definition at line 126 of file OgreD3D11RenderSystem.h.
bool Ogre::RenderSystem::mDerivedDepthBias [protected, inherited] |
Whether to update the depth bias per render call.
Definition at line 1504 of file OgreRenderSystem.h.
float Ogre::RenderSystem::mDerivedDepthBiasBase [protected, inherited] |
Definition at line 1505 of file OgreRenderSystem.h.
float Ogre::RenderSystem::mDerivedDepthBiasMultiplier [protected, inherited] |
Definition at line 1506 of file OgreRenderSystem.h.
float Ogre::RenderSystem::mDerivedDepthBiasSlopeScale [protected, inherited] |
Definition at line 1507 of file OgreRenderSystem.h.
D3D11Device Ogre::D3D11RenderSystem::mDevice [private] |
size_t Ogre::RenderSystem::mDisabledTexUnitsFrom [protected, inherited] |
Texture units from this upwards are disabled.
Definition at line 1498 of file OgreRenderSystem.h.
List of D3D drivers installed (video cards)
Definition at line 73 of file OgreD3D11RenderSystem.h.
Definition at line 59 of file OgreD3D11RenderSystem.h.
DriverVersion Ogre::RenderSystem::mDriverVersion [protected, inherited] |
Definition at line 1560 of file OgreRenderSystem.h.
ListenerList Ogre::RenderSystem::mEventListeners [protected, inherited] |
Definition at line 1534 of file OgreRenderSystem.h.
StringVector Ogre::RenderSystem::mEventNames [protected, inherited] |
List of names of events this rendersystem may raise.
Definition at line 1528 of file OgreRenderSystem.h.
size_t Ogre::RenderSystem::mFaceCount [protected, inherited] |
Definition at line 1489 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mFragmentProgramBound [protected, inherited] |
Definition at line 1541 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mGeometryProgramBound [protected, inherited] |
Definition at line 1540 of file OgreRenderSystem.h.
HardwareVertexBufferSharedPtr Ogre::RenderSystem::mGlobalInstanceVertexBuffer [protected, inherited] |
a global vertex buffer for global instancing
Definition at line 1510 of file OgreRenderSystem.h.
VertexDeclaration* Ogre::RenderSystem::mGlobalInstanceVertexBufferVertexDeclaration [protected, inherited] |
a vertex declaration for the global vertex buffer for the global instancing
Definition at line 1512 of file OgreRenderSystem.h.
size_t Ogre::RenderSystem::mGlobalNumberOfInstances [protected, inherited] |
the number of global instances (this number will be multiply by the render op instance number)
Definition at line 1514 of file OgreRenderSystem.h.
Definition at line 101 of file OgreD3D11RenderSystem.h.
Definition at line 100 of file OgreD3D11RenderSystem.h.
HINSTANCE Ogre::D3D11RenderSystem::mhInstance [private] |
instance
Definition at line 70 of file OgreD3D11RenderSystem.h.
Definition at line 102 of file OgreD3D11RenderSystem.h.
HardwareOcclusionQueryList Ogre::RenderSystem::mHwOcclusionQueries [protected, inherited] |
Definition at line 1537 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mInvertVertexWinding [protected, inherited] |
Definition at line 1495 of file OgreRenderSystem.h.
size_t Ogre::D3D11RenderSystem::mLastVertexSourceCount [private] |
Definition at line 104 of file OgreD3D11RenderSystem.h.
ColourValue Ogre::RenderSystem::mManualBlendColours[OGRE_MAX_TEXTURE_LAYERS][2] [protected, inherited] |
Saved manual colour blends.
Definition at line 1493 of file OgreRenderSystem.h.
Definition at line 67 of file OgreD3D11RenderSystem.h.
IDXGIFactory1* Ogre::D3D11RenderSystem::mpDXGIFactory [private] |
Definition at line 189 of file OgreD3D11RenderSystem.h.
bool Ogre::D3D11RenderSystem::mPerStageConstantSupport [private] |
Per-stage constant support? (not in main caps since D3D specific & minor)
Definition at line 79 of file OgreD3D11RenderSystem.h.
Definition at line 128 of file OgreD3D11RenderSystem.h.
Primary window, the one used to create the device.
Definition at line 179 of file OgreD3D11RenderSystem.h.
RenderTargetPriorityMap Ogre::RenderSystem::mPrioritisedRenderTargets [protected, inherited] |
The render targets, ordered by priority.
Definition at line 1464 of file OgreRenderSystem.h.
D3D11_RASTERIZER_DESC Ogre::D3D11RenderSystem::mRasterizerDesc [private] |
Definition at line 123 of file OgreD3D11RenderSystem.h.
RenderSystemCapabilities* Ogre::RenderSystem::mRealCapabilities [protected, inherited] |
Used to store the capabilities of the graphics card.
Definition at line 1549 of file OgreRenderSystem.h.
bool Ogre::D3D11RenderSystem::mRenderSystemWasInited [private] |
Definition at line 187 of file OgreD3D11RenderSystem.h.
RenderTargetMap Ogre::RenderSystem::mRenderTargets [protected, inherited] |
The render targets.
Definition at line 1462 of file OgreRenderSystem.h.
Definition at line 117 of file OgreD3D11RenderSystem.h.
unsigned char Ogre::D3D11RenderSystem::mSceneAlphaRejectValue [private] |
Definition at line 118 of file OgreD3D11RenderSystem.h.
bool Ogre::D3D11RenderSystem::mSceneAlphaToCoverage [private] |
Definition at line 119 of file OgreD3D11RenderSystem.h.
D3D11_RECT Ogre::D3D11RenderSystem::mScissorRect [private] |
Definition at line 134 of file OgreD3D11RenderSystem.h.
Definition at line 183 of file OgreD3D11RenderSystem.h.
UINT Ogre::D3D11RenderSystem::mStencilRef [private] |
Definition at line 125 of file OgreD3D11RenderSystem.h.
bool Ogre::RenderSystem::mTexProjRelative [protected, inherited] |
Definition at line 1562 of file OgreRenderSystem.h.
Vector3 Ogre::RenderSystem::mTexProjRelativeOrigin [protected, inherited] |
Definition at line 1563 of file OgreRenderSystem.h.
struct Ogre::D3D11RenderSystem::sD3DTextureStageDesc Ogre::D3D11RenderSystem::mTexStageDesc[OGRE_MAX_TEXTURE_LAYERS] [private] |
TextureManager* Ogre::RenderSystem::mTextureManager [protected, inherited] |
Definition at line 1477 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mUseCustomCapabilities [protected, inherited] |
Definition at line 1551 of file OgreRenderSystem.h.
bool Ogre::D3D11RenderSystem::mUseNVPerfHUD [private] |
NVPerfHUD allowed?
Definition at line 77 of file OgreD3D11RenderSystem.h.
size_t Ogre::RenderSystem::mVertexCount [protected, inherited] |
Definition at line 1490 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mVertexProgramBound [protected, inherited] |
Definition at line 1539 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mVSync [protected, inherited] |
Definition at line 1484 of file OgreRenderSystem.h.
unsigned int Ogre::RenderSystem::mVSyncInterval [protected, inherited] |
Definition at line 1485 of file OgreRenderSystem.h.
bool Ogre::RenderSystem::mWBuffer [protected, inherited] |
Definition at line 1486 of file OgreRenderSystem.h.
Copyright © 2012 Torus Knot Software Ltd
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Last modified Fri May 25 2012 21:49:14