mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Eliminate VarType for ComponentFormat
This commit is contained in:
parent
1a964891f8
commit
27cb704466
13 changed files with 166 additions and 141 deletions
|
@ -1095,7 +1095,7 @@ void ShaderCache::QueueUberShaderPipelines()
|
|||
// All attributes will be enabled in GetUberVertexFormat.
|
||||
PortableVertexDeclaration dummy_vertex_decl = {};
|
||||
dummy_vertex_decl.position.components = 4;
|
||||
dummy_vertex_decl.position.type = VAR_FLOAT;
|
||||
dummy_vertex_decl.position.type = ComponentFormat::Float;
|
||||
dummy_vertex_decl.position.enable = true;
|
||||
dummy_vertex_decl.stride = sizeof(float) * 4;
|
||||
NativeVertexFormat* dummy_vertex_format =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue