diff options
author | Keith Whitwell <[email protected]> | 2010-10-15 00:12:19 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-10-15 13:27:47 +0100 |
commit | 0a1c9001037a13b69b157994e7983aa3dee158d3 (patch) | |
tree | 289ae15bb01f50b568bf67912aae6135c4b0b9bf /src/gallium/drivers/llvmpipe/lp_jit.h | |
parent | 4195febeecd2d2f5571afdb90cbb185a4759f50a (diff) |
llvmpipe: don't pass frontfacing as a float
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_jit.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_jit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_jit.h b/src/gallium/drivers/llvmpipe/lp_jit.h index 16e04fce0cd..114f21f2d16 100644 --- a/src/gallium/drivers/llvmpipe/lp_jit.h +++ b/src/gallium/drivers/llvmpipe/lp_jit.h @@ -144,7 +144,7 @@ typedef void (*lp_jit_frag_func)(const struct lp_jit_context *context, uint32_t x, uint32_t y, - float facing, + uint32_t facing, const void *a0, const void *dadx, const void *dady, |