This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
|
ivec2 Helper_TexelFetchScale(ivec2 inputVec, int samplerIndex)
|
|
{
|
|
float scale = cp_renderScale[samplerIndex];
|
|
if (scale == 1.0)
|
|
{
|
|
return inputVec;
|
|
}
|
|
return ivec2(vec2(inputVec) * scale);
|
|
} |