summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/dlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index 4fe1bfddcc..790cace05c 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -5037,7 +5037,7 @@ save_Indexf(GLfloat x)
ctx->ListState.CurrentIndex = x;
if (ctx->ExecuteFlag) {
- CALL_Indexi(ctx->Exec, ((GLint) x));
+ CALL_Indexf(ctx->Exec, (x));
}
}
@@ -6527,7 +6527,7 @@ execute_list(GLcontext *ctx, GLuint list)
}
break;
case OPCODE_INDEX:
- CALL_Indexi(ctx->Exec, (n[1].i));
+ CALL_Indexf(ctx->Exec, (n[1].f));
break;
case OPCODE_EDGEFLAG:
CALL_EdgeFlag(ctx->Exec, (n[1].b));