summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-09-19 17:17:58 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-09-19 17:17:58 +0000
commita01cb26a90aaa8f631c94d741617715dff89168c (patch)
tree78edb63da6e45b31c4b647e6df424b8d04db90d5
parent26bb7bc0253cf557cbb98f1f0ecaa28e7067e6f5 (diff)
s/unsigned long/drm_handle_t/ to get compilation of fb driver to work
-rw-r--r--src/glx/mini/driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/mini/driver.h b/src/glx/mini/driver.h
index 27402641b7..6e63e7bc4a 100644
--- a/src/glx/mini/driver.h
+++ b/src/glx/mini/driver.h
@@ -87,9 +87,9 @@ typedef struct DRIDriverContextRec {
* the initial handshaking.
*/
struct {
- unsigned long hSAREA;
+ drm_handle_t hSAREA;
int SAREASize;
- unsigned long hFrameBuffer;
+ drm_handle_t hFrameBuffer;
int fbOrigin;
int fbSize;
int fbStride;