git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1721 993157c7-ee19-0410-b2c4-bb4e9862e678

This commit is contained in:
chrisf
2007-10-02 12:12:13 +00:00
parent 56db6e3de0
commit b5627d0bb2

View File

@@ -174,19 +174,22 @@ namespace BluntDirectX { namespace Direct3D
void DrawPrimitives(PrimitiveType primtype, int count)
{
device->DrawPrimitive( (D3DPRIMITIVETYPE)primtype, 0, count );
if (FAILED(device->DrawPrimitive( (D3DPRIMITIVETYPE)primtype, 0, count )))
throw gcnew InvalidOperationException("Failure");
}
void DrawIndexedPrimitives(PrimitiveType primtype, int vertexPoolSize, int numPrimitives)
{
device->DrawIndexedPrimitive( (D3DPRIMITIVETYPE)primtype, 0, 0, vertexPoolSize, 0, numPrimitives );
if (FAILED(device->DrawIndexedPrimitive( (D3DPRIMITIVETYPE)primtype, 0, 0, vertexPoolSize, 0, numPrimitives )))
throw gcnew InvalidOperationException("Failure");
}
void DrawIndexedPrimitives(PrimitiveType primType, Range<int> vertices, Range<int> indices)
{
device->DrawIndexedPrimitive( (D3DPRIMITIVETYPE)primType,
if (FAILED(device->DrawIndexedPrimitive( (D3DPRIMITIVETYPE)primType,
0, vertices.Start, vertices.End - vertices.Start,
indices.Start, (indices.End - indices.Start) / 3 );
indices.Start, (indices.End - indices.Start) / 3 )))
throw gcnew InvalidOperationException("Failure");
}
};
}}