diff options
author | Eric Anholt <eric@anholt.net> | 2009-10-06 18:38:53 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-10-08 15:34:09 -0700 |
commit | f309d475241260cf60567100511d5f7c6c487a29 (patch) | |
tree | 3aa737627b36783f69cfa037c7a2b118242d2a26 /src/i830_accel.c | |
parent | da0f6616ad63f1581cf91a98104e5287aa44e7ce (diff) |
Call pPixmaps plain old pixmaps.
Diffstat (limited to 'src/i830_accel.c')
-rw-r--r-- | src/i830_accel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i830_accel.c b/src/i830_accel.c index 1a7c61fa..11a75f44 100644 --- a/src/i830_accel.c +++ b/src/i830_accel.c @@ -48,9 +48,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "i830_ring.h" #include "i915_drm.h" -unsigned long intel_get_pixmap_pitch(PixmapPtr pPix) +unsigned long intel_get_pixmap_pitch(PixmapPtr pixmap) { - return (unsigned long)pPix->devKind; + return (unsigned long)pixmap->devKind; } void I830Sync(ScrnInfoPtr scrn) |