diff options
author | José Fonseca <[email protected]> | 2009-08-19 17:58:04 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:35 +0100 |
commit | 7c2dc3faa8e8ba99e29fcc09e7db39fc49d73200 (patch) | |
tree | 14c5662eba762b72ab1e25227bf2e56a9ec3d15f /src/gallium/drivers/llvmpipe/lp_state.h | |
parent | 6f5cd15f80d612e165078dfe2126cf44cf509d91 (diff) |
llvmpipe: Code generate the position interpolation.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state.h b/src/gallium/drivers/llvmpipe/lp_state.h index df7fff9d38c..f8b3793a595 100644 --- a/src/gallium/drivers/llvmpipe/lp_state.h +++ b/src/gallium/drivers/llvmpipe/lp_state.h @@ -59,7 +59,8 @@ struct vertex_info; typedef void -(*lp_shader_fs_func)(const void *pos, +(*lp_shader_fs_func)(uint32_t x, + uint32_t y, const void *a0, const void *dadx, const void *dady, |