mirror of https://github.com/PCSX2/pcsx2.git
Small oversight fix for "sample_texLevel"
This commit is contained in:
parent
b60e5a62fc
commit
e8a92ae731
|
@ -126,7 +126,7 @@ float4 sample_texLevel(SamplerState texSample, float2 t, float lod)
|
||||||
#if (GLSL == 1)
|
#if (GLSL == 1)
|
||||||
return texture(texSample, t, lod);
|
return texture(texSample, t, lod);
|
||||||
#else
|
#else
|
||||||
return Texture.Sample(texSample, t, lod);
|
return Texture.SampleLevel(texSample, t, lod);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue