mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
gl : refix
This commit is contained in:
parent
744b56b12d
commit
ca90c05b0a
1 changed files with 3 additions and 3 deletions
|
@ -184,11 +184,11 @@ void GLTexture::Init(RSXTexture& tex)
|
|||
log2width = log(tex.GetWidth()) / log(2);
|
||||
log2height = log(tex.GetHeight()) / log(2);
|
||||
|
||||
for (int i = 0; i < tex.GetWidth(); i++)
|
||||
for (int i = 0; i < tex.GetHeight(); i++)
|
||||
{
|
||||
for (int j = 0; j < tex.GetHeight(); j++)
|
||||
for (int j = 0; j < tex.GetWidth(); j++)
|
||||
{
|
||||
dst[(i*tex.GetHeight()) + j] = src[LinearToSwizzleAddress(j, i, 0, log2width, log2height, 0)];
|
||||
dst[(i*tex.GetWidth()) + j] = src[LinearToSwizzleAddress(j, i, 0, log2width, log2height, 0)];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue