diff options
author | Brian Paul <[email protected]> | 2010-03-05 16:51:35 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-03-05 16:51:35 -0700 |
commit | b5038fdd65535012086535c6a87bc56c91a65c87 (patch) | |
tree | 6af485a2009a1483b49e264246479fc35cc16903 /src/gallium/drivers/llvmpipe/lp_jit.h | |
parent | 7f4b5c5387a3a8e3c5f31f0badc943c43857683a (diff) |
llvmpipe: added code to set texture depth, max mipmap levels info
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_jit.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_jit.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_jit.h b/src/gallium/drivers/llvmpipe/lp_jit.h index 8df3015d4b4..0ebb2826fa2 100644 --- a/src/gallium/drivers/llvmpipe/lp_jit.h +++ b/src/gallium/drivers/llvmpipe/lp_jit.h @@ -48,6 +48,8 @@ struct lp_jit_texture { uint32_t width; uint32_t height; + uint32_t depth; + uint32_t last_level; uint32_t stride; const void *data; }; @@ -56,6 +58,8 @@ struct lp_jit_texture enum { LP_JIT_TEXTURE_WIDTH = 0, LP_JIT_TEXTURE_HEIGHT, + LP_JIT_TEXTURE_DEPTH, + LP_JIT_TEXTURE_LAST_LEVEL, LP_JIT_TEXTURE_STRIDE, LP_JIT_TEXTURE_DATA }; |