Rename love.graphics.drawShaderVertices to drawFromShader.

This commit is contained in:
Sasha Szpakowski
2023-02-05 15:16:10 -04:00
parent e13b0078a2
commit d3747cebb1
4 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -697,8 +697,8 @@ public:
void drawLayer(Texture *texture, int layer, Quad *quad, const Matrix4 &m);
void drawInstanced(Mesh *mesh, const Matrix4 &m, int instancecount);
void drawShaderVertices(PrimitiveType primtype, int vertexcount, int instancecount, Texture *maintexture);
void drawShaderVertices(Buffer *indexbuffer, int indexcount, int instancecount, int startindex, Texture *maintexture);
void drawFromShader(PrimitiveType primtype, int vertexcount, int instancecount, Texture *maintexture);
void drawFromShader(Buffer *indexbuffer, int indexcount, int instancecount, int startindex, Texture *maintexture);
/**
* Draws text at the specified coordinates