| Class | Description |
---|
| AnaglyphVirtualRealityProvider |
AnaglyphVirtualRealityProvider is a VirtualRealityProvider that can render stereoscopic anaglyph images that can be viewed with colored glasses - for example red / cyan glasses.
|
| AnaglyphVirtualRealityProviderAnaglyphColorTransformation |
AnaglyphColorTransformation class defines the matrices that are used to multiply colors for left and right eye.
It also defines the gamma value that is used to apply gamma correction before the matrix multiplication.
|
| AssemblyShaderBytecodeProvider |
AssemblyShaderBytecodeProvider class provides access to compiled shaders stored as embedded resources in an assembly.
The class can be registered by EffectsManager with calling its RegisterShaderResource(String, Byte) or RegisterShaderResourceStatic(ShaderBytecodeProvider) methods.
This way the EffectsManager will be able to get shader resources (bytecode) from the resources provided by this class.
|
| BackBufferReadyEventArgs |
BackBufferReadyEventArgs is an event handler that is used for the BackBufferReady event.
BackBufferReady event is fired when the scene is rendered to back buffer that is ready to be mapped and copy from graphics card to system memory.
|
| BeginVirtualRealityRenderingStep |
BeginVirtualRealityRenderingStep is a rendering step that prepares the rendering context for rendering the current eye.
It is usually added before DXScene.DefaultPrepareRenderTargetsRenderingStep.
When the virtual reality provider defined in current VirtualRealityContext is enabled, this step calls the UpdateRenderingContext(RenderingContext, Boolean) method.
If virtual reality provider is not enabled this step does nothing.
|
| Bounds |
Bounds defines a BoundingBox and also provides IsEmpty property.
|
| CameraDistanceSortedRenderingQueue |
CameraDistanceSortedRenderingQueue is rendering queue where the objects inside the queue are sorted by their distance from the camera.
This is uses for transparent object that need to be rendered so that the objects that are more far away from the camera are rendered first.
See remarks for more info.
|
| ChangeBackBufferRenderingStep |
ChangeBackBufferRenderingStep can be used to change the current BackBuffer, RenderTargetView, DepthStencilView or Viewport.
To set the new back buffer values use the SetNewBackBuffer(Texture2D, Texture2DDescription, RenderTargetView, DepthStencilView, Int32) method. To set the new Viewport value set the NewViewport property.
When this rendering step is executed, the OutputMerger targets are chenged (if SetNewBackBuffer was called) and properties related to current back buffer in RenderingContext are changed.
If NewViewport is set then also the Viewport in the RenderingContext and in Rasterizer are changed.
|
| ClonedRenderablePrimitive |
ClonedRenderablePrimitive is rendered with the same resources as originalRenderablePrimitiveBase but with different Material.
|
| CommonStates |
CommonStates class defines that standard BlendStates, DepthStencilStates, RasterizerState and SamplerStates.
|
| CommonUtils |
CommonUtils class defines a few static utility methods.
|
| CompleteRenderingStep |
CompleteRendering is the last rendering step. It Presents SwapChain (if used) or prepares the output buffer that can be send to WPF or CPU memory.
|
| ContextStatesManager |
ContextStatesManager is a helper class that is used to set the current BlendStates, DepthStencilStates, RasterizerState and SamplerStates.
Before each state change it checks if the state already has the new state value and in this case prevents the actual DirectX state change call to improve performance.
ContextStatesManager also collect state changes statistics.
|
| CustomActionRenderingStep |
CustomActionRenderingStep can be used to execute custom method as part of rendering process.
|
| CustomRenderableNode |
CustomRenderableNode is a SceneNode that can be used to fully customize the rendering process.
This can be done with creating the CustomRenderableNode object with a Func that create a custom RenderablePrimitiveBase object that is then added to the rendering queue.
The CustomRenderableNode object can be also created with a custom Action that is called when this SceneNode needs to be rendered (this creates CustomRenderablePrimitive object and adds it to the rendering queue).
|
| CustomRenderablePrimitive |
CustomRenderablePrimitive is a class that represent the raw renderable object that can be added to rendering queue
and is created with providing custom Action that is called when this object needs to be rendered.
CustomRenderablePrimitive is use by the CustomRenderableNode object.
|
| CustomRenderingContext |
CustomRenderingContext is the same as it base RenderingContext class, except that this class has two additional public methods: SetPerFrameData(Int32, DXSceneChangeNotifications) and SetFinalBackBuffer(Texture2D, Texture2DDescription, RenderTargetView).
|
| DeviceCapabilities |
DeviceCapabilities class describes the capabilities of a DirectX device.
|
| DeviceCreationException |
DeviceCreationException occurs when the DirectX device cannot be created.
|
| DictionaryShaderBytecodeProvider |
DictionaryShaderBytecodeProvider class provides access to shaders stored in a simple dictionary with shader name as key and its bytecode (byte array of compiled shader) as values.
The class can be registered by EffectsManager with calling its RegisterShaderResource(String, Byte) or RegisterShaderResourceStatic(ShaderBytecodeProvider) methods.
This way the EffectsManager will be able to get shader resources (bytecode) from the resources provided by this class.
|
| DirectoryShaderBytecodeProvider |
DirectoryShaderBytecodeProvider class provides access to shaders stored as files in the specified directory on disk.
Resources registered by this DirectoryShaderBytecodeProvider are available by file name with extension but without directory path.
The class can be registered by EffectsManager with calling its RegisterShaderResource(String, Byte) or RegisterShaderResourceStatic(ShaderBytecodeProvider) methods.
This way the EffectsManager will be able to get shader resources (bytecode) from the resources provided by this class.
|
| DisposableDXResource |
DisposableDXResource class is a base class for DXEngine resources that can be disposed.
|
| DisposeHelper |
DisposeHelper class provides DisposeAndNullify methods that can help dispose and nullify a disposable object.
|
| DisposeList |
DisposeList contains a list of IDisposable objects that are automatically disposed when DisposeList is disposed.
The order of disposal is reversed from the order in which the objects were added to the list (first object is disposed last).
|
| DXAttributeCollection |
DXAttributeCollection contains one or more DXEngine's attributes (DXAttribute) that can be attached to WPF object.
|
| DXAttributeException |
DXAttributeException is an exception that signals that there is a problem with using a DXAttribute.
|
| DXDevice |
DXDevice is a DXEngine's wrapper for the DirectX device.
|
| DXDeviceConfiguration |
DXDeviceConfiguration is used to define properties that are used for creation of DirectX Device and SwapChain.
|
| DXDeviceResource |
DXDeviceResource class is a base class for all resources that are initialized by DXDevice.
|
| DXDiagnostics |
DXDiagnostics class contains static properties that define which diagnostics features of the DXEngine will be turned on.
|
| DXEngineComException |
DXEngineException exception thrown is thrown when an error occured when calling DirectX COM methods.
The exception class contains details information about the error in the Descriptor property.
|
| DXEngineException |
DXEngineException is base class for all exception thrown in Ab3d.DXEngine.
|
| DXHitTestContext |
DXHitTestContext provides a context information for hit testing.
|
| DXHitTestOptions |
DXHitTestOptions class specifies hit testing parameters that are used with DXScene's hit testing.
|
| DXHitTestResult |
DXHitTestResult is a base class for hit test results in DXEngine.
|
| DXRayHitTestResult |
DXRayHitTestResult class provides result of a ray hit test.
|
| DXRayHitTestWpfModel3DResult |
DXRayHitTestWpfModel3DResult class provides result of a ray hit test with a WPF's GeometryModel3D.
|
| DXRayInstancedHitTestResult |
DXRayInstancedHitTestResult class provides result of a ray hit test that is executed on instanced object.
|
| DXResourceBase |
DXResourceBase class is the base class for any DXEngine's resource
|
| DXResourcesTracker |
DXResourcesTracker collects classes that implement IDXResource and can report all colleced classes. Objects are collected with WeakReference.
|
| DXScene |
DXScene is the main object in the DXEngine rendering engine.
It defines the 3D scene in a hierarchical tree hat starts with the RootNode.
It updates the SceneNodes and renders them.
|
| DXSceneInitializationException |
DXSceneInitializationException is thrown by DXView when no GraphicsProfile can be initialized.
|
| DXSceneResource |
DXSceneResource class is a base class for all resources that are initialized by DXScene.
|
| DXWireframeHelper |
DXWireframeHelper class contains methods that can be used to annotate ModelVisual3D or Model3D with special property that is used by DXEngine to render the objects with the specified wireframe settings.
|
| Effect |
Effect is a base class for all effects that can render a mesh (vertex and index buffer) with the material that defines the properties that defined the effect.
|
| EffectRegisteredEventArgs |
EffectRegisteredEventArgs class defines the Effect that was registered by EffectsManager and is used in the EffectRegistered event in EffectsManager.
|
| EffectsManager |
EffectsManager class help use the Effect classes.
It provides loading, caching and reusing the effects and shaders.
All access to effects and shaders is thread safe.
|
| Extensions |
Extensions class provides extension methods to convert WPF types to SharpDX types and vice versa.
|
| FeatureLevelsNotSupportedException |
FeatureLevelsNotSupportedException occurs when the DirectX 11 device cannot be created because the the adapter (graphics card) does not support the required feature levels.
|
| FileShaderBytecodeProvider |
FileShaderBytecodeProvider class provides access to shaders stored as files in file system.
The class can be registered by EffectsManager and can be used to generate shaders from the files registered by this class.
Before the files can be accessed, the files must be registered by AddResourceFile(String, String), AddResourceFile(String) or AddResourceFiles(IEnumerableString).
|
| GeometryMesh |
GeometryMesh class is used to create Index and Vertex buffers from list of positions, normals, textureCoordinates and triangleIndices.
|
| GeometryMeshGenerator |
GeometryMeshGenerator contains static methods that can create Mesh objects.
|
| GraphicsProfile |
GraphicsProfile specifies the settings that are used to initialize DXDevice with DirectX 11 device and DXSceneView.
|
| GraphicsProfileRejectedEventArgs |
GraphicsProfileRejectedEventArgs is used for GraphicsProfileRejected event and specifes the reasons why the GraphicsProfile was rejected.
|
| HandleCreatedEventArgs |
HandleCreatedEventArgs is used for the HandleCreated event.
|
| HitTester |
HitTester is a class that can be used do a hit testing on a mesh data with vertex and index buffer.
The static methods in this class take a Ray, various types of vertex buffers, index buffer and a few flags and returns a hit test result.
|
| InitializeRenderingStep |
InitializeRendering is the first rendering step. It sets up the RenderingContext with current RenderTargets, resets statistics, etc.
|
| InputElementFactory |
InputElementFactory is a helper class that can help with creation of InputElement arrays.
|
| InstancedMeshNode |
InstancedMeshNode represents a SceneNode that can render multiple instances of DXEngine's Mesh.
|
| InvalidDxEngineResourceException |
InvalidDxEngineResourceException exception is thrown when a Texture2D, Buffer, View or some other resource is not in the expected format or was not created with the expected flags.
|
| Material |
Material is a base abstract class from which all DXEngine's material must be derived from.
|
| MaterialSortedRenderingQueue |
MaterialSortedRenderingQueue is rendering queue where the objects inside the queue are sorted so that objects with the same material are rendered one after another - this minimizes the state changes and increases the performance.
|
| MeshBase |
MeshBase is a base class that defines the data about one 3D model that are stored in the DirectX structures that are used to draw the model.
|
| MeshObjectNode |
MeshObjectNode is an ObjectNode that can render an object that is defined by object derived from MeshBase class.
|
| MeshOctTree |
MeshOctTree class organizes the triangles in 3D space into multiple levels of MeshOctTreeNode objects so that the search of a triangle or
check for triangle ray intersection is very efficient. Each MeshOctTreeNode divide its space into 8 child MeshOctTreeNode.
|
| MeshOctTreeNode |
MeshOctTreeNode class represents one node in a MeshOctTree data structure.
Each node represents its part of the 3D space that is defined by the BoundingBox.
The node contains triangles that can be fully fitted into node's BoundingBox (and do not find in any of the child nodes).
Each node (except the nodes on the MaxNodeLevel) can have up to 8 child MeshOctTreeNodes (number can be lower in case some nodes does not contain any triangles).
|
| MeshTrianglesSorter |
MeshTrianglesSorter can be used to sort triangle indices by camera distance.
Sorting is done by calling SortByCameraDistance(Vector3, Boolean) method.
After that call the SortedIndicesArray array is set to the sorted triangle indices array.
MeshTrianglesSorter can be created by vertex buffer defined by PositionNormalTexture, PositionNormal or Vector3.
|
| ObjectNode |
ObjectNode is a SceneNode that is used by scene nodes that can produce renderable objects (objects derived from RenderablePrimitiveBase class).
Renderable objects are defined in the overridden CollectRenderableObjects method.
|
| OctTree | Obsolete.
OctTree class is obsolete and can be removed in a future version. Please use MeshOctTree instead.
|
| OctTreeNode | Obsolete.
OctTreeNode class is obsolete and can be removed in a future version. Please use MeshOctTreeNode instead.
|
| OnePixelTexture |
OnePixelTexture class creates a ShaderResourceView with a 1x1 texture (one pixel) with the specified color.
The class also provides easy updating of the color.
When you do not need to update the color of the texture, then you can also use a static CreateOnePixelTexture(Device, Color4, Format) method.
User needs to dispose the created OnePixelTexture to prevent resources leaking.
|
| OptimizedPointMeshT |
OptimizedPointMesh class is used to show point cloud and can dynamically reduce the number of rendered positions to improver rendering performance.
It creates one Vertex buffer and multiple Index buffers that are used to provide different level of optimized sub-sets of all the vertices.
|
| PlanarShadowRenderingProvider |
PlanarShadowRenderingProvider provides support for rendering shadows on a 3D plane surface.
|
| PreparePostProcessingRenderingStep |
PreparePostProcessingRenderingStep prepares Shader resources and Render targets for RenderPostProcessingRenderingStep.
|
| PrepareRenderTargetsRenderingStep |
PrepareRenderTargets is a rendering step that is usually called before objects are rendered.
This step also calls DXScene's AfterFrameInitialized event.
|
| PrepareSsaoRenderingStep |
PrepareSsaoRenderingStep rendering step prepares other rendering steps for SSAO rendering.
|
| PrepareVarianceShadowMappingRenderingStep |
PrepareVarianceShadowMappingRenderingStep rendering step prepares other rendering steps for variance shadow rendering.
|
| RenderableInstancedObjectsPrimitive |
RenderableInstancedObjectsPrimitive class is a RenderablePrimitive that can be used to render multiple instances of
geometry based DXScene's ObjectNode and where the instances are defined by VertexBufferBinding.
|
| RenderableMeshPrimitive |
RenderableMeshPrimitive class is a RenderablePrimitive that can be used to render geometry based on the MeshBase and SubMesh.
|
| RenderableObjectNodePrimitive |
RenderableObjectNodePrimitive class is a RenderablePrimitive that can be used to render 3D objects created from DXScene's ObjectNode objects.
|
| RenderablePrimitive |
RenderablePrimitive is a base class that is derived from RenderablePrimitiveBase and implements rendering geometry based on the
resources defined by the RenderablePrimitive constructor.
|
| RenderablePrimitiveBase |
RenderablePrimitiveBase is a base abstract class that represents a low level geometry object that is prepared to be rendered with DirectX.
It contains all required DirectX buffers and required data to prepare the rendering states.
RenderablePrimitiveBase objects are rendered in the RenderObjectsRenderingStep rendering step and can be added to any RenderingQueue.
|
| RenderablePrimitiveRenderingQueue |
RenderablePrimitiveRenderingQueue is derived from RenderingQueue.
The difference from RenderingQueue is that RenderablePrimitiveRenderingQueue can accept (with Add method) only objects derived from RenderablePrimitive.
This is useful for rendering queues that need to be sorted for example MaterialSortedRenderingQueue and CameraDistanceSortedRenderingQueue.
|
| RenderingContext |
RenderingContext defines the context of the current rendering pass.
|
| RenderingEventArgs |
RenderingEventArgs contains the RenderingContext and is used for AfterFrameInitialized and AfterObjectsRendered events on DXScene.
|
| RenderingQueue |
RenderingQueue is a queue that is used to store renderable objects that have similar properties and are rendered one after another.
Objects inside the queue can be reordered or sorted to improve performance or make sure that the rendered results are correct (for example for transparency sorting).
|
| RenderingQueueSortingCompletedEventArgs |
RenderingQueueSortingCompletedEventArgs is used for the SortingCompleted event.
The event is called after the RenderingQueue is sorted.
It allows the code in the event handler to change the order in which objects are rendered by changing the values in the SortedIndexes array
(note: use RenderablePrimitives.Count to get number of items because SortedIndexes.Length may be to big).
|
| RenderingStatistics |
RenderingStatistics collects various rendering statistics for one rendered frame.
|
| RenderingStepBase |
RenderingStepBase is an abstract base class for other rendering step classes. It does not define any rendering logic but provides handling BeforeRunningStep and AfterRunningStep event handling.
|
| RenderingStepsFlowControl |
RenderingStepsFlowControl is a class that defines a RenderingStep that can control the flow of rendering steps execution with dynamically changing the rendering step that will be exected next.
|
| RenderingStepsGroup |
RenderingStepsGroup is a rendering step that can group multiple rendering steps inside its Children list of rendering steps.
|
| RenderingStepsList |
RenderingStepsList is a collection of rendering steps. It provides additional methods to add rendering steps before and after specific rendering step.
|
| RenderingStepsLoop |
RenderingStepsLoop can be used to create loops in RenderingsSteps list.
The loop is created with specifiying the beginLoopRenderingStep that is the first RenderingStep in the loop.
The beginLoopRenderingStep is executed when the loopPredicate returns true.
When the loopPredicate returns false, the execution will continue on the rendering step after this RenderingStepsLoop.
|
| RenderObjectsRenderingStep |
RenderObjects renders the objects
|
| RenderPostProcessingRenderingStep |
RenderPostProcessing renders the post processing effects.
|
| RenderSpritesRenderingStep |
RenderSpritesRenderingStep rendering step renders the sprites that are defined in the SpriteBatches.
|
| RenderSsaoPostProcess |
RenderSsaoPostProcess is a post-process that uses normal-depth map and rendered Screen Space Ambient Occlusion (SSAO) texture.
|
| RenderTextureRenderingStep |
RenderTextureRenderingStep is a rendering step that can render the specified SourceTexture (as ShaderResourceView)
to a part of the screen specified with the TargetViewport.
Rendering of the colors can be adjusted with setting the Offsets and Factors.
It is also possible to specify a CustomBlendState and CustomDepthStencilState.
|
| ResolveBackBufferRenderingStep |
ResolveBackBufferRenderingStep resolves the multi-sampled back buffer (MSAA) and down-samples the super-samples back buffer (SSAA) into a back buffer without multi-sampling.
The source buffer is get from the renderingContext.CurrentBackBuffer.
The destination buffer can be customized by calling SetCustomDestinationBuffer(Texture2D, Texture2DDescription, RenderTargetView).
When this method is not called, then the renderingContext.FinalBackBuffer is used for destination buffer.
|
| ResolveStereoscopicImagesRenderingStep |
ResolveStereoscopicImagesRenderingStep is a base class for presenting stereoscopic images for left and right eye to the final RenderTarget.
The actual implementation of how the two images are presented must be defined in the derived class.
This class provides properties that define ShaderResourceView for left and right eye.
|
| ResourceCreationException |
ResourceCreationException exception is thrown when DXEngine's resources cannot be found or are not defined correctly.
|
| SceneNode |
SceneNode class represents a basic component of a 3D scene that is composed of various SceneNodes organized in a hierarchical structure.
|
| ScreenSpaceAmbientOcclusionRenderingProvider |
ScreenSpaceAmbientOcclusionRenderingProvider provides support for using ambient occlusion to dim the ambient light on areas where it would be occluded by 3D objects.
The class implements Screen Space Ambient Occlusion (SSAO) that provides a fast real-time rendering approximation of ambient occlusion.
Note that SSAO does not work for PBR (Physically Based Rendering) materials because there usually a pre-calculated ambient occlusion texture is used.
Also IShadowCastingNode and IShadowReceivingNode does not work with SSAO.
|
| ScreenSpaceLineMesh |
ScreenSpaceLineMesh class prepares the low level DirectX objects (Index and Vertex buffers) for rendering screen-space 3D lines.
|
| ScreenSpaceLineNode |
ScreenSpaceLineNode class is an ObjectNode that represent one or more 3D lines.
The lines are generated in a geometry shader that reads line positions and generates triangles in such a way that the triangles face the camera and define the lines with specified thickness in screen coordinates.
Line thickness, color and other properties are defined by the LineMaterial.
|
| ShaderBytecodeProvider |
ShaderBytecodeProvider is an abstract class that is a base class for all classes that represent the source of shader byte code.
The EffectsManager uses the GetShaderBytecode(String) to get the requested shader resource by its name.
|
| ShadowLightData |
ShadowLightData class defines data that are required for shadow mapping and are generated from one shadow light.
|
| ShadowRenderingProviderBase |
ShadowRenderingProviderBase is an abstract class that is a base class for all shadow rendering providers that change DXEngine rendering steps with adding shadow rendering.
|
| SharedDXDeviceResource |
SharedDXDeviceResource class is a base class for DXEngine's resources that are initialized by DXDevice and can be shared by many difference objects.
|
| SharedDXResource |
SharedDXResource class is a base class for DXEngine's resources that can be shared by many difference objects.
|
| SharedDXResourceWrapperT |
SharedDXResourceWrapper class is a generic wrapper class that can wrap any IDisposable object and adds reference counting to it.
|
| SharedDXSceneResource |
SharedDXSceneResource class is a base class for DXEngine's resources that are initialized by DXScene and can be shared by many difference objects.
|
| SimpleMeshT |
SimpleMesh class is used to create Index and Vertex buffers from a list of structs which type is defined by the type T.
For example the following struct SimpleMesh<PositionTexture> is used to define a mesh from a List of PositionTexture structs.
|
| SimpleResolveStereoscopicImagesRenderingStep |
SimpleResolveStereoscopicImagesRenderingStep is a RenderingStep that is using a pixel shader for presenting stereoscopic images for left and right eye to the final RenderTarget.
This class provide basic logic with preparing the quad mesh and vertex shader.
The user of the class must provide an Action that takes RenderingContext as parameter and binds a pixel shader and sets its constant buffers
(LeftEyeShaderResourceView and RightEyeShaderResourceView are already bind to slots 0 and 1 by this SimpleResolveStereoscopicImagesRenderingStep).
|
| SimpleShaderBytecodeProvider |
SimpleShaderBytecodeProvider class provides access to one shader bytecode with a specified resource name.
The class can be registered by EffectsManager with calling its RegisterShaderResource(String, Byte) or RegisterShaderResourceStatic(ShaderBytecodeProvider) methods.
This way the EffectsManager will be able to get shader resources (bytecode) from the resources provided by this class.
|
| SortedRenderablePrimitiveRenderingQueue |
RenderablePrimitiveRenderingQueue is derived from RenderingQueue.
The difference from RenderingQueue is that RenderablePrimitiveRenderingQueue can accept (with Add method) only objects derived from RenderablePrimitive.
This is useful for rendering queues that need to be sorted for example MaterialSortedRenderingQueue and CameraDistanceSortedRenderingQueue.
|
| SplitScreenVirtualRealityProvider |
SplitScreenVirtualRealityProvider is a VirtualRealityProvider that can render stereoscopic images where image for the left eye is rendered in one half of the screen and image for the right is rendered in the other half of the screen.
This type of 3D rendering can be seen by the 3D TV displays.
The SplitScreenVirtualRealityProvider supports SideBySide (vertical) and TopAndBottom (horizontal) split screen.
|
| SpriteBatch |
SpriteBatch class defines a collection of sprites (textures) that can be very quickly rendered to the 3D scene defined by DXScene object.
|
| SsaoBlurPostProcess |
SsaoBlurPostProcess is a post process that applies blur to Ssao texture.
|
| StereoscopicVirtualRealityProvider |
StereoscopicVirtualRealityProvider is an abstract class and provides common logic to render stereoscopic images.
|
| SubMesh |
SubMesh is part of the MeshBase that uses the same vertex and index buffers as the MeshBase but use its own Material, StartIndexLocation and IndexCount.
|
| SuperShadowShaderEffect |
SuperShadowShaderEffect is an effect that can use SuperShader and configure it to render the scene with using the shadow mapping buffer that was rendered before.
|
| TextureCache |
TextureCache class provides texture cashing for DXEngine.
|
| TextureInfo |
TextureInfo defines some properties of the texture.
|
| TextureLoader |
TextureLoader static class contains a method that can load image file into ShaderResourceView.
In case the image file is png, jpg, tiff, gif, bmp or ico then WIC image decoder is used.
In case the image file is dds (DirectDraw Surface file format that is optimized for DirectX graphics), the internal DDS file loader is used.
|
| Transformation |
Transformation defines the Matrix that is used to transform the SceneNode.
Transformation is optimized for cases where the Matrix is identity (no transformation).
|
| UpdateStatusEventArgs |
UpdateStatusEventArgs is used in the AfterUpdated event and defines the DXScene's dirty flags and a Boolena that specifes if the new frame needs to be rendered (this value can be changed by the event subscriber).
|
| VarianceDepthBlurPostProcess |
VarianceDepthBlurPostProcess is a post process that applies blur to depth data created with variance depth mapping.
|
| VarianceShadowDepthEffect |
VarianceShadowDepthEffect renders the objects with writing the object's depth and depth squared into the render target.
|
| VarianceShadowRenderingProvider |
VarianceShadowRenderingProvider provides support for rendering shadows with using Variance shadow rendering technique.
Currently only one SpotLight or one DirectionalLight shadow casting light are supported.
|
| VirtualRealityContext |
VirtualRealityContext provides base class for describing the context used for rendering a virtual reality scene.
During rendering of the scene, the VirtualRealityContext can be read from the VirtualRealityContext property.
The instace of VirtualRealityContext is created in the VirtualRealityProviderBase.CreateVirtualRealityContext method.
|
| VirtualRealityProviderBase |
VirtualRealityProviderBase is a base abstract class for all classes that provide virtual reality support to DXEngine.
|