FramebufferManager: Remove unnecessary sampler declaration.
It's not needed and invalid when declared for the geometry shader.
This commit is contained in:
parent
6bc274a968
commit
031096c8d4
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue