mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 00:28:56 +00:00
glsl: remove usage of old texture2D* function
This commit is contained in:
parent
d73c950623
commit
8a6f747408
6 changed files with 10 additions and 10 deletions
|
@ -146,7 +146,7 @@ static const char *s_fragmentShaderSrc =
|
|||
"in vec2 uv0;\n"
|
||||
"out vec4 ocol0;\n"
|
||||
"void main(void) {\n"
|
||||
" ocol0 = texture2D(samp8,uv0) * color;\n"
|
||||
" ocol0 = texture(samp8,uv0) * color;\n"
|
||||
"}\n";
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue