mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-10-31 20:27:52 +00:00
Merge pull request #585 from Subv/local_var
Rasterizer: Fixed a warning in GetWrappedTexCoord.
This commit is contained in:
commit
4cc1a71441
1 changed files with 4 additions and 4 deletions
|
@ -266,10 +266,10 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0,
|
|||
|
||||
case Regs::TextureConfig::MirroredRepeat:
|
||||
{
|
||||
int val = (int)((unsigned)val % (2 * size));
|
||||
if (val >= size)
|
||||
val = 2 * size - 1 - val;
|
||||
return val;
|
||||
int coord = (int)((unsigned)val % (2 * size));
|
||||
if (coord >= size)
|
||||
coord = 2 * size - 1 - coord;
|
||||
return coord;
|
||||
}
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue