diff options
author | Marek Olšák <[email protected]> | 2010-04-11 01:13:11 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-04-11 01:32:15 +0200 |
commit | 1c356ac95b6df0962dbd15311ff7e0ea172e1aea (patch) | |
tree | e4d1090f383e3b232555b86b3aeb7fda585bed08 /src/gallium/drivers/r300/r300_texture.h | |
parent | 26a54ed6fddd42d8dba3d0c18d9d23ea63c62807 (diff) |
r300g: cleanup handling of sampler views
The evolution of TX_FORMAT bits is as follows:
* When a texture is created, set bits independent of pipe_format.
* When a sampler view is created, add format-specific bits.
* When sampler states and views are getting merged, add min/max LOD.
Diffstat (limited to 'src/gallium/drivers/r300/r300_texture.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.h b/src/gallium/drivers/r300/r300_texture.h index a545a0f2212..7b8b40551da 100644 --- a/src/gallium/drivers/r300/r300_texture.h +++ b/src/gallium/drivers/r300/r300_texture.h @@ -25,10 +25,13 @@ #include "util/u_format.h" -#include "r300_reg.h" - struct r300_texture; +uint32_t r300_translate_texformat(enum pipe_format format, + const unsigned char *swizzle); + +uint32_t r500_tx_format_msb_bit(enum pipe_format format); + unsigned r300_texture_get_stride(struct r300_screen* screen, struct r300_texture* tex, unsigned level); |