зеркало из https://github.com/mozilla/pjs.git
Bug 743813 - fix build bustage due to signedness warning in WARNINGS_AS_ERRORS dir - no review
This commit is contained in:
Родитель
b2a46e2132
Коммит
1b86035766
|
@ -135,7 +135,7 @@ WebGLContext::ActiveTexture(WebGLenum texture)
|
|||
return NS_OK;
|
||||
|
||||
if (texture < LOCAL_GL_TEXTURE0 ||
|
||||
texture >= LOCAL_GL_TEXTURE0 + mGLMaxTextureUnits)
|
||||
texture >= LOCAL_GL_TEXTURE0 + PRUint32(mGLMaxTextureUnits))
|
||||
{
|
||||
return ErrorInvalidEnum(
|
||||
"ActiveTexture: texture unit %d out of range. "
|
||||
|
|
Загрузка…
Ссылка в новой задаче