Test suite for MoonWorks graphics
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
cosmonaut 5709a063ae update examples to use WaitForFences 2 weeks ago
BasicCompute update examples to use WaitForFences 2 weeks ago
BasicStencil Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
BasicTriangle Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
ClearScreen Upgrade all projects to net7.0 9 months ago
ClearScreen_MultiWindow Upgrade all projects to net7.0 9 months ago
CompressedTextures Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
ComputeUniforms Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
CopyTexture update examples to use WaitForFences 2 weeks ago
Cube Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
CullFace Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
DepthMSAA Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
DrawIndirect Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
GetBufferData update examples to use WaitForFences 2 weeks ago
InstancingAndOffsets Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
MSAA Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
MoonWorks.Test.Common Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
RenderTexture3D Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
RenderTextureCube Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
RenderTextureMipmaps Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
Texture3D Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
TextureMipmaps Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
TexturedAnimatedQuad Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
TexturedQuad Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
TriangleVertexBuffer Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
VertexSampler Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
VideoPlayer Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
WindowResizing Recompiled shaders with latest shadercompiler and updated shader names to avoid redundancy 3 months ago
.gitignore add some initial tests 11 months ago
MoonWorksGraphicsTests.sln Add WindowResizing test 8 months ago
README.md Add WindowResizing test 8 months ago

README.md

Tests include:

ClearScreen

Clears the screen to CornflowerBlue. Mostly useful as a smoke test to make sure basic device init and render passes are working as intended.

ClearScreen_MultiWindow

Similar to above, but with two windows. Useful for testing window claim/unclaim logic and presenting to multiple swapchains.

BasicTriangle

Sets up a graphics pipeline and draws a triangle without vertex buffers. (The vertices are manually positioned in the vertex shader.) Also tests some basic rasterizer state with custom viewports, scissor rects, and fill/wireframe modes.

TriangleVertexBuffer

Similar to above, but using a MoonWorks vertex buffer and custom vertex structs.

TexturedQuad

Draws a textured quad to the screen. Tests texture binding, index buffers, and sampler states.

AnimatedTexturedQuad

Similar to above, but with rotating and color-blending animations. Tests vertex and fragment uniforms.

MSAA

Draws a basic triangle with varying MSAA sample counts.

CullMode

Draws several triangles with various culling modes and winding orders.

GetBufferData

Sets buffer data, gets the data back from the GPU, and prints the results to the console.

Cube

Renders a cubemap skybox and a spinning cube. Tests depth textures, sampling from depth textures, depth-only render passes, cube textures, and 32-bit index buffers.

BasicCompute

Uses compute pipelines to (1) fill a texture with yellow pixels then display it to the screen and (2) calculate the squares of the first 64 integers. Tests compute pipeline creation, compute dispatching, compute textures, and compute buffers.

ComputeUniforms

Uses a compute pipeline to fill a texture with a color gradient. Tests compute uniforms.

DrawIndirect

Draws two triangles via indirect commands. Tests DrawPrimitivesIndirect.

InstancingAndOffsets

Draws 16 instanced triangles. Tests DrawPrimitivesInstanced, vertex offsets, and index offsets.

CompressedTextures

Loads a series of compressed textures, then displays them for viewing. Tests compressed texture loading.

CopyTexture

Loads an image, then makes three copies of the image. One is a 1:1 scale image, another is a half-sized image (to test linear/nearest blitting), and the final copy is to a buffer. The buffer bytes are then compared with the original texture bytes to verify the copy's correctness. Tests CopyTextureToTexture and CopyTextureToBuffer.

VideoPlayer

Plays a sample Ogg Theora video file. Tests YUV textures and video rendering.

Texture3D

Displays 2D slices of a 3D texture. Tests creating and drawing 3D textures.

TextureMipmaps

Displays a quad that can be scaled to reveal various mip levels. The mips are generated from PNGs. Tests SetTextureData for mip levels and rendering mipmaps.

VertexSampler

Displays a triangle whose colors are driven by sampling a texture in the vertex shader.

RenderTexture3D

Fades through 2D slices of a 3D render texture. Tests binding and sampling 3D render textures.

RenderTextureCube

Displays a cubemap generated by rendering to a cube render target. Tests binding and sampling cube render textures.

RenderTextureMipmaps

Displays a quad that can be scaled to reveal various mip levels. The mips are solid colors, generated by clearing various levels of the texture in a render pass. Tests rendering to mipmap levels of a render texture, mip LOD bias, min/max LODs, and mip filter modes.

BasicStencil

Demonstrates stencil masking using two triangles. Tests stencil buffers and basic stencil operations.

DepthMSAA

Displays two cubes floating around each other on a multisampled surface. Tests multisampled depth buffers.

WindowResizing

Tests resizing the window to various resolutions.