diff options
author | José Fonseca <[email protected]> | 2010-05-26 15:11:17 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-05-30 10:30:01 +0100 |
commit | 18fb9ff6d8f58a08e559070cf29f26ed0caa567f (patch) | |
tree | 38eaf2f1471305e753ad3ccef8e42e857528d08b /src/gallium/drivers/llvmpipe/lp_rast.h | |
parent | dc109430386daffb34d2f369025c561c99444c85 (diff) |
llvmpipe: Pass the fs variant to the rasterizer.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_rast.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.h b/src/gallium/drivers/llvmpipe/lp_rast.h index 881f475189e..ff0e3cfc73b 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.h +++ b/src/gallium/drivers/llvmpipe/lp_rast.h @@ -66,13 +66,9 @@ struct lp_rast_state { struct lp_jit_context jit_context; /* The shader itself. Probably we also need to pass a pointer to - * the tile color/z/stencil data somehow: - * jit_function[0] skips the triangle in/out test code - * jit_function[1] does triangle in/out testing + * the tile color/z/stencil data somehow */ - lp_jit_frag_func jit_function[2]; - - boolean opaque; + struct lp_fragment_shader_variant *variant; }; |