diff options
author | Christoph Bumiller <[email protected]> | 2012-12-07 22:47:40 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2012-12-07 22:48:54 +0100 |
commit | f7599b2c32185535b4c215de0ba0454129fa523f (patch) | |
tree | 03734693a28bc7a3852d9a71e0b334bfddb5a420 /src/gallium/drivers/nv50/nv50_blit.h | |
parent | ff5a9868c8d5041a3d944ce300c857934f4e8251 (diff) |
nv50,nvc0: add support for cube map arrays
NOTE: nv50 support not enabled, someone with nva3/8 please fix.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_blit.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_blit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_blit.h b/src/gallium/drivers/nv50/nv50_blit.h index 0a1c2ae6773..d409f21f615 100644 --- a/src/gallium/drivers/nv50/nv50_blit.h +++ b/src/gallium/drivers/nv50/nv50_blit.h @@ -72,6 +72,7 @@ nv50_blit_reinterpret_pipe_texture_target(enum pipe_texture_target target) { switch (target) { case PIPE_TEXTURE_CUBE: + case PIPE_TEXTURE_CUBE_ARRAY: return PIPE_TEXTURE_2D_ARRAY; case PIPE_TEXTURE_RECT: return PIPE_TEXTURE_2D; |