diff options
author | Karl Schultz <[email protected]> | 2004-01-13 01:11:09 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2004-01-13 01:11:09 +0000 |
commit | c6c4cd8b6f1b4b34ad84bdb31095458bde011fb0 (patch) | |
tree | ed250431085c5b0819113c3a907312b668a94b1b /src/mesa/tnl/t_save_loopback.c | |
parent | 4f7a8f3a4753d4662c311e0dd99d94cb7dcd0f71 (diff) |
silence compiler warnings
Diffstat (limited to 'src/mesa/tnl/t_save_loopback.c')
-rw-r--r-- | src/mesa/tnl/t_save_loopback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_save_loopback.c b/src/mesa/tnl/t_save_loopback.c index e1a60baaca2..fec0ea5b645 100644 --- a/src/mesa/tnl/t_save_loopback.c +++ b/src/mesa/tnl/t_save_loopback.c @@ -169,7 +169,7 @@ static void index_attr1fv(GLcontext *ctx, GLint target, const GLfloat *v) static void edgeflag_attr1fv(GLcontext *ctx, GLint target, const GLfloat *v) { - ctx->Exec->EdgeFlag((v[0] == 1.0)); + ctx->Exec->EdgeFlag((GLboolean)(v[0] == 1.0)); } struct loopback_attr { |