зеркало из https://github.com/mozilla/pjs.git
Bug 729132 - Correctly handle the case that we try to draw a texture with x = width. r=mattwoodrow
--HG-- extra : rebase_source : 02d84bf78ef60d84dfb96832cd39267f5d99aa38
This commit is contained in:
Родитель
fdc9fcd883
Коммит
d21ac86fe1
|
@ -2510,9 +2510,9 @@ GLContext::DecomposeIntoNoRepeatTriangles(const nsIntRect& aTexCoordRect,
|
|||
{
|
||||
// normalize this
|
||||
nsIntRect tcr(aTexCoordRect);
|
||||
while (tcr.x > aTexSize.width)
|
||||
while (tcr.x >= aTexSize.width)
|
||||
tcr.x -= aTexSize.width;
|
||||
while (tcr.y > aTexSize.height)
|
||||
while (tcr.y >= aTexSize.height)
|
||||
tcr.y -= aTexSize.height;
|
||||
|
||||
// Compute top left and bottom right tex coordinates
|
||||
|
|
Загрузка…
Ссылка в новой задаче