Browse Source
Merge pull request #2425 from FernandoS27/y-direction
Fix flipping on some games by applying Y direction register
pull/15/merge
Hexagon12
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
src/video_core/renderer_opengl/gl_shader_gen.cpp
|
|
|
@ -58,6 +58,9 @@ void main() { |
|
|
|
} |
|
|
|
|
|
|
|
out += R"( |
|
|
|
|
|
|
|
// Set Position Y direction
|
|
|
|
position.y *= utof(config_pack[2]); |
|
|
|
// Check if the flip stage is VertexB
|
|
|
|
// Config pack's second value is flip_stage
|
|
|
|
if (config_pack[1] == 1) { |
|
|
|
|