svga: revert packing of surface key

Over-ambitious packing of values broke my cursor.
This commit is contained in:
Keith Whitwell 2009-11-25 11:44:41 +00:00
parent 92c6a26a8a
commit 55b0157860
1 changed files with 3 additions and 3 deletions

View File

@ -58,10 +58,10 @@ struct svga_screen;
*/
struct svga_host_surface_cache_key
{
SVGA3dSurfaceFlags flags;
SVGA3dSurfaceFormat format;
SVGA3dSize size;
uint32_t flags:8;
uint32_t format:8;
uint32_t numFaces:8;
uint32_t numFaces:24;
uint32_t numMipLevels:7;
uint32_t cachable:1; /* False if this is a shared surface */
};