mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
rsx: Always initialize CC register in FP interpreter
This commit is contained in:
parent
cc17c9579a
commit
27d773751a
1 changed files with 4 additions and 0 deletions
|
@ -531,6 +531,10 @@ void initialize()
|
|||
vr0 = vec4(abs(wpos_scale), wpos_scale, 1., 1.);
|
||||
vr1 = vec4(0., wpos_bias, 0., 0.);
|
||||
wpos = gl_FragCoord * vr0 + vr1;
|
||||
|
||||
// Other
|
||||
cc[0] = vr_zero;
|
||||
cc[1] = vr_zero;
|
||||
})"
|
||||
|
||||
R"(
|
||||
|
|
Loading…
Add table
Reference in a new issue