mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
FramebufferManager: Remove unnecessary sampler declaration.
It's not needed and invalid when declared for the geometry shader.
This commit is contained in:
@ -299,7 +299,7 @@ FramebufferManager::FramebufferManager(int targetWidth, int targetHeight, int ms
|
||||
std::stringstream vertices, layers;
|
||||
vertices << m_EFBLayers * 3;
|
||||
layers << m_EFBLayers;
|
||||
std::string gs = sampler +
|
||||
std::string gs =
|
||||
"layout(triangles) in;\n"
|
||||
"layout(triangle_strip, max_vertices = " + vertices.str() + ") out;\n"
|
||||
"flat out int layer;\n"
|
||||
|
Reference in New Issue
Block a user