mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
mesa: add casts in _mesa_GetTexParameterfv() to silence warnings
There are other similar int->float casts elsewhere in the function. Reviewed-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
9aadc3a6cc
commit
ddb774ddf1
1 changed files with 4 additions and 4 deletions
|
|
@ -1388,10 +1388,10 @@ _mesa_GetTexParameterfv( GLenum target, GLenum pname, GLfloat *params )
|
|||
if (ctx->API != API_OPENGLES || !ctx->Extensions.OES_draw_texture)
|
||||
goto invalid_pname;
|
||||
|
||||
params[0] = obj->CropRect[0];
|
||||
params[1] = obj->CropRect[1];
|
||||
params[2] = obj->CropRect[2];
|
||||
params[3] = obj->CropRect[3];
|
||||
params[0] = (GLfloat) obj->CropRect[0];
|
||||
params[1] = (GLfloat) obj->CropRect[1];
|
||||
params[2] = (GLfloat) obj->CropRect[2];
|
||||
params[3] = (GLfloat) obj->CropRect[3];
|
||||
break;
|
||||
|
||||
case GL_TEXTURE_SWIZZLE_R_EXT:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue