mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 06:29:00 +01:00
TextureCache: Set proper vertex limit in geometry shader.
Without instancing 6 vertices are output instead of 3.
This commit is contained in:
parent
5944d15021
commit
4fe9ceeee2
@ -377,7 +377,7 @@ TextureCache::TextureCache()
|
||||
|
||||
const char *GProgram =
|
||||
"layout(triangles) in;\n"
|
||||
"layout(triangle_strip, max_vertices = 3) out;\n"
|
||||
"layout(triangle_strip, max_vertices = 6) out;\n"
|
||||
"in vec2 v_uv0[];\n"
|
||||
"out vec3 f_uv0;\n"
|
||||
"SAMPLER_BINDING(9) uniform sampler2DArray samp9;\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user