use uchar for index type

This commit is contained in:
Samuliak 2024-09-11 12:43:15 +02:00
parent e7f8f0ee4c
commit a328c5e753
3 changed files with 6 additions and 4 deletions

View file

@ -490,8 +490,7 @@ namespace LatteDecompiler
// TODO: inly include index buffer if needed
src->addFmt(", device uint* indexBuffer [[buffer({})]]", decompilerContext->output->resourceMappingMTL.indexBufferBinding);
// TODO: put into the support buffer?
// TODO: use uchar?
src->addFmt(", constant uint& indexType [[buffer({})]]", decompilerContext->output->resourceMappingMTL.indexTypeBinding);
src->addFmt(", constant uchar& indexType [[buffer({})]]", decompilerContext->output->resourceMappingMTL.indexTypeBinding);
src->add(" VERTEX_BUFFER_DEFINITIONS");
}
else