mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 11:00:11 +01:00
fix some warnings
This commit is contained in:
parent
7b776de12c
commit
79b372b92a
3 changed files with 9 additions and 7 deletions
|
|
@ -791,7 +791,7 @@ void GLAPIENTRY _ae_loopback_array_elt( GLint elt )
|
|||
/* generic attributes */
|
||||
for (at = actx->attribs; at->func; at++) {
|
||||
const GLubyte *src = at->array->BufferObj->Data
|
||||
+ (GLuint) at->array->Ptr
|
||||
+ (unsigned long) at->array->Ptr
|
||||
+ elt * at->array->StrideB;
|
||||
at->func( at->index, src );
|
||||
}
|
||||
|
|
@ -799,7 +799,7 @@ void GLAPIENTRY _ae_loopback_array_elt( GLint elt )
|
|||
/* conventional arrays */
|
||||
for (aa = actx->arrays; aa->func ; aa++) {
|
||||
const GLubyte *src = aa->array->BufferObj->Data
|
||||
+ (GLuint) aa->array->Ptr
|
||||
+ (unsigned long) aa->array->Ptr
|
||||
+ elt * aa->array->StrideB;
|
||||
aa->func( src );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3062,7 +3062,7 @@ parse_generic_attrib_num(GLcontext *ctx, GLubyte ** inst,
|
|||
{
|
||||
*attrib = parse_integer(inst, Program);
|
||||
|
||||
if ((*attrib < 0) || (*attrib > MAX_VERTEX_PROGRAM_ATTRIBS))
|
||||
if (*attrib > MAX_VERTEX_PROGRAM_ATTRIBS)
|
||||
{
|
||||
_mesa_set_program_error (ctx, Program->Position,
|
||||
"Invalid generic vertex attribute index");
|
||||
|
|
@ -3085,7 +3085,7 @@ parse_texcoord_num (GLcontext * ctx, GLubyte ** inst,
|
|||
{
|
||||
*coord = parse_integer (inst, Program);
|
||||
|
||||
if ((*coord < 0) || (*coord >= ctx->Const.MaxTextureUnits)) {
|
||||
if (*coord >= ctx->Const.MaxTextureUnits) {
|
||||
_mesa_set_program_error (ctx, Program->Position,
|
||||
"Invalid texture unit index");
|
||||
_mesa_error (ctx, GL_INVALID_OPERATION, "Invalid texture unit index");
|
||||
|
|
@ -4092,7 +4092,8 @@ static GLuint
|
|||
parse_param (GLcontext * ctx, GLubyte ** inst, struct var_cache **vc_head,
|
||||
struct arb_program *Program)
|
||||
{
|
||||
GLuint found, specified_length, err;
|
||||
GLuint found, err;
|
||||
GLint specified_length;
|
||||
char *error_msg;
|
||||
struct var_cache *param_var;
|
||||
|
||||
|
|
@ -4690,7 +4691,8 @@ parse_src_reg (GLcontext * ctx, GLubyte ** inst, struct var_cache **vc_head,
|
|||
GLboolean *IsRelOffset )
|
||||
{
|
||||
struct var_cache *src;
|
||||
GLuint binding_state, binding_idx, is_generic, found, offset;
|
||||
GLuint binding_state, binding_idx, is_generic, found;
|
||||
GLint offset;
|
||||
|
||||
/* And the binding for the src */
|
||||
switch (*(*inst)++) {
|
||||
|
|
|
|||
|
|
@ -4891,7 +4891,7 @@ static void GLAPIENTRY save_Begin( GLenum mode )
|
|||
Node *n;
|
||||
GLboolean error = GL_FALSE;
|
||||
|
||||
if (mode < GL_POINTS || mode > GL_POLYGON) {
|
||||
if (/*mode < GL_POINTS ||*/ mode > GL_POLYGON) {
|
||||
_mesa_compile_error( ctx, GL_INVALID_ENUM, "Begin (mode)");
|
||||
error = GL_TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue