summaryrefslogtreecommitdiff
path: root/src/i965_video.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2009-10-06 18:38:53 -0700
committerEric Anholt <eric@anholt.net>2009-10-08 15:34:09 -0700
commitf309d475241260cf60567100511d5f7c6c487a29 (patch)
tree3aa737627b36783f69cfa037c7a2b118242d2a26 /src/i965_video.c
parentda0f6616ad63f1581cf91a98104e5287aa44e7ce (diff)
Call pPixmaps plain old pixmaps.
Diffstat (limited to 'src/i965_video.c')
-rw-r--r--src/i965_video.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/i965_video.c b/src/i965_video.c
index d313e6cf..f9aacc7b 100644
--- a/src/i965_video.c
+++ b/src/i965_video.c
@@ -982,7 +982,7 @@ I965DisplayVideoTextured(ScrnInfoPtr scrn, I830PortPrivPtr pPriv, int id,
short width, short height, int video_pitch,
int x1, int y1, int x2, int y2,
short src_w, short src_h,
- short drw_w, short drw_h, PixmapPtr pPixmap)
+ short drw_w, short drw_h, PixmapPtr pixmap)
{
intel_screen_private *intel = intel_get_screen_private(scrn);
BoxPtr pbox;
@@ -1054,7 +1054,7 @@ I965DisplayVideoTextured(ScrnInfoPtr scrn, I830PortPrivPtr pPriv, int id,
*/
/* Upload kernels */
- surf_bos[0] = i965_create_dst_surface_state(scrn, pPixmap);
+ surf_bos[0] = i965_create_dst_surface_state(scrn, pixmap);
if (!surf_bos[0])
return;
@@ -1145,8 +1145,8 @@ I965DisplayVideoTextured(ScrnInfoPtr scrn, I830PortPrivPtr pPriv, int id,
* coordinates) to the backing pixmap.
*/
#ifdef COMPOSITE
- pix_xoff = -pPixmap->screen_x + pPixmap->drawable.x;
- pix_yoff = -pPixmap->screen_y + pPixmap->drawable.y;
+ pix_xoff = -pixmap->screen_x + pixmap->drawable.x;
+ pix_yoff = -pixmap->screen_y + pixmap->drawable.y;
#else
pix_xoff = 0;
pix_yoff = 0;