mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Vulkan: Emit input/output locations for EFB poke geometry shader
This commit is contained in:
@ -1274,12 +1274,12 @@ bool FramebufferManager::CompilePokeShaders()
|
|||||||
layout(triangles) in;
|
layout(triangles) in;
|
||||||
layout(triangle_strip, max_vertices = EFB_LAYERS * 3) out;
|
layout(triangle_strip, max_vertices = EFB_LAYERS * 3) out;
|
||||||
|
|
||||||
in VertexData
|
VARYING_LOCATION(0) in VertexData
|
||||||
{
|
{
|
||||||
vec4 col0;
|
vec4 col0;
|
||||||
} in_data[];
|
} in_data[];
|
||||||
|
|
||||||
out VertexData
|
VARYING_LOCATION(0) out VertexData
|
||||||
{
|
{
|
||||||
vec4 col0;
|
vec4 col0;
|
||||||
} out_data;
|
} out_data;
|
||||||
|
Reference in New Issue
Block a user