summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-08-27 11:12:35 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-08-27 11:12:35 +0000
commitd49acd629b67ad0a59038f47aab7be578a62db72 (patch)
tree633efff192de5bb21621d2a6c511efa8eacccc06
parentd2d3052378e8e17e9db69d58a5d6c4141debc0fd (diff)
Committing in .
Added a type cast to silence the OpenVMS DECC compiler Modified Files: Mesa-newtree/src/mesa/swrast/s_nvfragprog.c ----------------------------------------------------------------------
-rw-r--r--src/mesa/swrast/s_nvfragprog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_nvfragprog.c b/src/mesa/swrast/s_nvfragprog.c
index 8bb6ccf735..cb3ca86a53 100644
--- a/src/mesa/swrast/s_nvfragprog.c
+++ b/src/mesa/swrast/s_nvfragprog.c
@@ -477,7 +477,7 @@ init_machine_deriv( GLcontext *ctx,
_mesa_memcpy(dMachine, machine, sizeof(struct fp_machine));
/* Clear temporary registers */
- _mesa_bzero(machine->Temporaries,
+ _mesa_bzero( (void*) machine->Temporaries,
MAX_NV_FRAGMENT_PROGRAM_TEMPS * 4 * sizeof(GLfloat));
/* Add derivatives */