mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
PixelShaderGen: Fixes implicit type conversion or PR #3772.
This regression did only happen on OpenGL ES.
This commit is contained in:
parent
c4af588945
commit
ef01f234df
1 changed files with 1 additions and 1 deletions
|
@ -836,7 +836,7 @@ static void WriteStage(T& out, pixel_shader_uid_data* uid_data, int n, API_TYPE
|
||||||
uid_data->SetTevindrefTexmap(i, texmap);
|
uid_data->SetTevindrefTexmap(i, texmap);
|
||||||
|
|
||||||
out.Write("\ttextemp = ");
|
out.Write("\ttextemp = ");
|
||||||
SampleTexture<T>(out, "(tevcoord.xy)", texswap, texmap, ApiType);
|
SampleTexture<T>(out, "float2(tevcoord.xy)", texswap, texmap, ApiType);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue