summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common
diff options
context:
space:
mode:
authorGeorge Sapountzis <gsapountzis@gmail.com>2010-03-14 11:36:46 +0200
committerGeorge Sapountzis <gsapountzis@gmail.com>2010-03-15 01:17:17 +0200
commitc1bde793598bcb5d5f8744c290a66ea6586eb29f (patch)
tree0fa035874103498bf4711ae360dadc8efb63d6e9 /src/mesa/drivers/dri/common
parentcf8a1caa231b748d3ba7c776ab076ad3de99e963 (diff)
dri/swrast: port to dri_sw (drawable)
Diffstat (limited to 'src/mesa/drivers/dri/common')
-rw-r--r--src/mesa/drivers/dri/common/dri_sw.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/common/dri_sw.h b/src/mesa/drivers/dri/common/dri_sw.h
index 93e9624654..89369a9d00 100644
--- a/src/mesa/drivers/dri/common/dri_sw.h
+++ b/src/mesa/drivers/dri/common/dri_sw.h
@@ -67,16 +67,13 @@ struct __DRIcontextRec {
struct __DRIdrawableRec {
- GLframebuffer Base;
+ void *driverPrivate;
void *loaderPrivate;
__DRIscreen *driScreenPriv;
int refcount;
-
- /* scratch row for optimized front-buffer rendering */
- char *row;
};