mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VideoSW: Fix GL ES shader.
This commit is contained in:
@ -55,7 +55,7 @@ void SWOGLWindow::Prepare()
|
|||||||
"out vec4 ColorOut;\n"
|
"out vec4 ColorOut;\n"
|
||||||
"uniform sampler2D Texture;\n"
|
"uniform sampler2D Texture;\n"
|
||||||
"void main() {\n"
|
"void main() {\n"
|
||||||
" ColorOut = texture2D(Texture, TexCoord);\n"
|
" ColorOut = texture(Texture, TexCoord);\n"
|
||||||
"}\n";
|
"}\n";
|
||||||
|
|
||||||
std::string vertex_shader = "out vec2 TexCoord;\n"
|
std::string vertex_shader = "out vec2 TexCoord;\n"
|
||||||
|
Reference in New Issue
Block a user