mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
VertexLoaderManager: Clean up and slightly speed up with templates
This commit is contained in:
@ -122,7 +122,7 @@ public:
|
||||
// HACK
|
||||
DataReader src{const_cast<u8*>(vertex_data), const_cast<u8*>(vertex_data) + size};
|
||||
const u32 bytes =
|
||||
VertexLoaderManager::RunVertices(vat, primitive, num_vertices, src, is_preprocess);
|
||||
VertexLoaderManager::RunVertices<is_preprocess>(vat, primitive, num_vertices, src);
|
||||
|
||||
ASSERT(bytes == size);
|
||||
|
||||
|
Reference in New Issue
Block a user