Browse Source
Merge pull request #1248 from degasus/shader_fix
gl_shader_gen: Initialize position.
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/video_core/renderer_opengl/gl_shader_gen.cpp
|
|
@ -42,6 +42,7 @@ layout (std140) uniform vs_config { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
void main() { |
|
|
void main() { |
|
|
|
|
|
position = vec4(0.0, 0.0, 0.0, 0.0); |
|
|
exec_vertex(); |
|
|
exec_vertex(); |
|
|
)"; |
|
|
)"; |
|
|
|
|
|
|
|
|
|