BackdropRenderer obsolete update

This commit is contained in:
Aragas 2016-10-06 21:12:22 +03:00
parent 20861de0fb
commit edcafe3f58
1 changed files with 2 additions and 1 deletions

View File

@ -172,7 +172,8 @@
pass.Apply()
GraphicsDevice.SetVertexBuffer(vBuffer)
GraphicsDevice.Indices = iBuffer
GraphicsDevice.DrawIndexedPrimitives(PrimitiveType.TriangleList, 0, 0, _vertices.Count, 0, Indicies.Count)
'GraphicsDevice.DrawIndexedPrimitives(PrimitiveType.TriangleList, 0, 0, _vertices.Count, 0, Indicies.Count)
GraphicsDevice.DrawIndexedPrimitives(PrimitiveType.TriangleList, 0, 0, _vertices.Count)
Next
End Sub