Table of Contents

Draw vertices

Advanced Programmer

When loading a scene, Stride automatically handles the draw calls to display the scene throughout the entity system. This page introduces manual drawing.

Primitives

Stride provides the following set of built-in primitives:

  • Plane
  • Cube
  • Sphere
  • Geosphere
  • Cylinder
  • Torus
  • Teapot

They aren't automatically created along with the GraphicsDevice, so you have to instantiate them. You can do this through the GeometricPrimitive class.

Code: Creating and using a primitive

// creation
var myCube = GeometricPrimitive.Cube.New(GraphicsDevice);
var myTorus = GeometricPrimitive.Torus.New(GraphicsDevice);
 
// ...
 
// draw one on screen
myCube.Draw(CommandList, EffectInstance);

They have no effect associated with them, so the user has to provide an EffectInstance when drawing. For information on loading effects, please see Effects and shaders.

Custom drawing

Outside of built-in primitives, any geometry can be drawn by creating custom vertex buffers. To create a vertex buffer, first a VertexDeclaration has to be defined. A vertex declaration describes the elements of each vertex and their layout. For details, see the VertexElement reference page.

Next, a vertex buffer can be created from an array of vertices. The vertex data type has to match the VertexDeclaration.

Given vertex buffer and declaration, a VertexBufferBinding can be created.

Code: Creating a vertex buffer

// Create a vertex layout with position and texture coordinate
var layout = new VertexDeclaration(VertexElement.Position<Vector3>(), VertexElement.TextureCoordinate<Vector2>()); 
 
// Create the vertex buffer from an array of vertices
var vertices = new VertexPositionTexture[vertexCount];
var vertexBuffer = Buffer.Vertex.New(GraphicsDevice, vertices);
 
// Create a vertex buffer binding
var vertexBufferBinding = new VertexBufferBinding(vertexBuffer, layout, vertexCount);

To draw the newly created vertex buffer, it has to be bound to the pipeline. The vertex layout and the PrimitiveType to draw have to be included in the pipeline state object. The buffer itself can be set dynamically.

Afterwards, the vertices are ready to be rendered using Draw(int, int).

Code: Binding and drawing vertex buffers

// Set the pipeline state
pipelineStateDescription.InputElements = vertexBufferBinding.Layout.CreateInputElements();
pipelineStateDescription.PrimitiveType = PrimitiveType.TriangleStrip;
 
// Create and set a PipelineState object
// ...

// Bind the vertex buffer to the pipeline
commandList.SetVertexBuffers(0, vertexBuffer, 0, vertexBufferBinding.Stride);
 
// Draw the vertices
commandList.Draw(vertexCount);

It is also possible to draw indexed geometry. To use an index buffer, first create it similarly to the vertex buffer and bind it to the pipeline. It can then be used for drawing using DrawIndexed(int, int, int).

Code: Drawing indexed vertices

// Create the index buffer
var indices = new short[indexCount];
var is32Bits = false;
var indexBuffer = Buffer.Index.New(GraphicsDevice, indices);
 
// set the VAO
commandList.SetIndexBuffer(indexBuffer, 0, is32Bits);

// Draw indexed vertices
commandList.DrawIndexed(indexBuffer.ElementCount);