diff options
author | Mikhail Gusarov <dottedmag@dottedmag.net> | 2010-01-02 05:43:27 +0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-01-01 23:28:14 -0800 |
commit | fb26cb793c6eba189050662c566f7ea0559bd486 (patch) | |
tree | 9280d42e0f6f3eba32f53e61ea47b25c949de0b4 | |
parent | 2c85d72fc7bd013af327321ad5d626dc73c3caf0 (diff) |
Remove unused pShadow field from drivers' private structures
Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | hw/kdrive/ephyr/ephyr.h | 1 | ||||
-rw-r--r-- | hw/kdrive/fake/fake.h | 1 | ||||
-rw-r--r-- | hw/kdrive/fbdev/fbdev.h | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/hw/kdrive/ephyr/ephyr.h b/hw/kdrive/ephyr/ephyr.h index 5d58a216c..f5ea144b3 100644 --- a/hw/kdrive/ephyr/ephyr.h +++ b/hw/kdrive/ephyr/ephyr.h @@ -63,7 +63,6 @@ typedef struct _ephyrFakexaPriv { typedef struct _ephyrScrPriv { Rotation randr; Bool shadow; - PixmapPtr pShadow; DamagePtr pDamage; EphyrFakexaPriv *fakexa; } EphyrScrPriv; diff --git a/hw/kdrive/fake/fake.h b/hw/kdrive/fake/fake.h index 88d209674..3c4a51bbc 100644 --- a/hw/kdrive/fake/fake.h +++ b/hw/kdrive/fake/fake.h @@ -38,7 +38,6 @@ typedef struct _fakePriv { typedef struct _fakeScrPriv { Rotation randr; Bool shadow; - PixmapPtr pShadow; } FakeScrPriv; extern KdCardFuncs fakeFuncs; diff --git a/hw/kdrive/fbdev/fbdev.h b/hw/kdrive/fbdev/fbdev.h index 2125ec85a..3da8e4753 100644 --- a/hw/kdrive/fbdev/fbdev.h +++ b/hw/kdrive/fbdev/fbdev.h @@ -46,7 +46,6 @@ typedef struct _fbdevPriv { typedef struct _fbdevScrPriv { Rotation randr; Bool shadow; - PixmapPtr pShadow; } FbdevScrPriv; extern KdCardFuncs fbdevFuncs; |