diff options
author | Keith Packard <keithp@keithp.com> | 2011-03-17 23:48:52 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-03-17 23:48:52 -0700 |
commit | d5b16b037b8fe12ba85c68c8289b6a8cc5e3a09d (patch) | |
tree | 38b4d32afa0143d36d1d1eaeb5fc393dcf9654ea /include/pixmapstr.h | |
parent | dc9ce695a69ca0787f58f8d160212a7a41acb703 (diff) |
Revert "dix: Remove usage_hint from pixmaps, store it in ->drawable.class"
This reverts commit 1564c82417d201de5b9a5ec5e7aa4ef14c45fbad.
The drivers used the top bits of the usage_hint to store driver
private flags (intel, radeon, nouveau).
With EXA we need to get at this data so if we migrate the pixmap we
can create the correct type of pixmap in the driver, however this
commit truncates the usage_hint into 8-bit class and loses all the
good stuff.
Signed-off-by: Dave Airlie <airlied@gmail.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'include/pixmapstr.h')
-rw-r--r-- | include/pixmapstr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/pixmapstr.h b/include/pixmapstr.h index 542c381bc..702faf0ac 100644 --- a/include/pixmapstr.h +++ b/include/pixmapstr.h @@ -80,6 +80,7 @@ typedef struct _Pixmap { short screen_x; short screen_y; #endif + unsigned usage_hint; /* see CREATE_PIXMAP_USAGE_* */ } PixmapRec; #endif /* PIXMAPSTRUCT_H */ |