mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
9 lines
218 B
GLSL
9 lines
218 B
GLSL
ivec2 Helper_TexelFetchScale(ivec2 inputVec, int samplerIndex)
|
|
{
|
|
float scale = cp_renderScale[samplerIndex];
|
|
if (scale == 1.0)
|
|
{
|
|
return inputVec;
|
|
}
|
|
return ivec2(vec2(inputVec) * scale);
|
|
} |