mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
macOS moltenVK support and SIGBUS handling (#11252)
This commit is contained in:
parent
2f93df480b
commit
08333e0876
6 changed files with 26 additions and 5 deletions
|
@ -681,8 +681,8 @@ namespace glsl
|
|||
"{\n"
|
||||
" vec4 low = cl * 12.92;\n"
|
||||
" vec4 high = 1.055 * pow(cl, vec4(1. / 2.4)) - 0.055;\n"
|
||||
" bvec4 select = lessThan(cl, vec4(0.0031308));\n"
|
||||
" return clamp(mix(high, low, select), 0., 1.);\n"
|
||||
" bvec4 selection = lessThan(cl, vec4(0.0031308));\n"
|
||||
" return clamp(mix(high, low, selection), 0., 1.);\n"
|
||||
"}\n\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue