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_rast.h | |
parent | 4195febeecd2d2f5571afdb90cbb185a4759f50a (diff) |
llvmpipe: don't pass frontfacing as a float
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_rast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.h b/src/gallium/drivers/llvmpipe/lp_rast.h index f74b198a66c..c5fb15484c5 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.h +++ b/src/gallium/drivers/llvmpipe/lp_rast.h @@ -78,7 +78,7 @@ struct lp_rast_state { * These pointers point into the bin data buffer. */ struct lp_rast_shader_inputs { - float facing; /** Positive for front-facing, negative for back-facing */ + unsigned frontfacing; /** One for front-facing */ unsigned disable:1; /** Partially binned, disable this command */ unsigned opaque:1; /** Is opaque */ |