added uint8 IndexType

This commit is contained in:
2023-05-11 21:07:26 +08:00
parent 7c4a27771f
commit 4ef1283fce
3 changed files with 6 additions and 4 deletions

View File

@@ -76,6 +76,7 @@ IndexBuffer *GPUDevice::CreateIBO(IndexType index_type,uint32_t count,const void
{
uint32_t stride;
if(index_type==IndexType::U8 )stride=1;else
if(index_type==IndexType::U16)stride=2;else
if(index_type==IndexType::U32)stride=4;else
return(nullptr);