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/scrnintstr.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/scrnintstr.h')
-rw-r--r-- | include/scrnintstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scrnintstr.h b/include/scrnintstr.h index 302a561bd..a9357e8a5 100644 --- a/include/scrnintstr.h +++ b/include/scrnintstr.h @@ -208,7 +208,7 @@ typedef PixmapPtr (* CreatePixmapProcPtr)( int /*width*/, int /*height*/, int /*depth*/, - unsigned /*class*/); + unsigned /*usage_hint*/); typedef Bool (* DestroyPixmapProcPtr)( PixmapPtr /*pPixmap*/); |