removed name and binding from PrimitiveCreater::

This commit is contained in:
hyzboy 2024-04-02 23:39:59 +08:00
parent 4ebc8a3260
commit 2fdd7e7bd5
2 changed files with 0 additions and 4 deletions

View File

@ -15,8 +15,6 @@ namespace hgl
{
struct PrimitiveVertexBuffer
{
AnsiString name;
int binding;
VBO * vbo;
void * map_data;
};//struct PrimitiveVertexBuffer

View File

@ -41,8 +41,6 @@ namespace hgl
pvb=new PrimitiveVertexBuffer;
pvb->name =name;
pvb->binding=vif->binding;
pvb->vbo =db->CreateVBO(vif->format,vertices_number,data);
if(!data)