mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
s/intelDisplayBuffer/intelDisplaySurface
This commit is contained in:
parent
d04938331a
commit
0452eb9086
3 changed files with 9 additions and 9 deletions
|
|
@ -66,9 +66,9 @@ get_color_surface(struct intel_framebuffer *intel_fb,
|
|||
* \param rect optional subrect of surface to display (may be NULL).
|
||||
*/
|
||||
void
|
||||
intelDisplayBuffer(__DRIdrawablePrivate * dPriv,
|
||||
struct pipe_surface *surf,
|
||||
const drm_clip_rect_t * rect)
|
||||
intelDisplaySurface(__DRIdrawablePrivate * dPriv,
|
||||
struct pipe_surface *surf,
|
||||
const drm_clip_rect_t * rect)
|
||||
{
|
||||
struct intel_context *intel;
|
||||
const intelScreenPrivate *intelScreen
|
||||
|
|
@ -250,7 +250,7 @@ intelSwapBuffers(__DRIdrawablePrivate * dPriv)
|
|||
|
||||
_mesa_notifySwapBuffers(ctx); /* flush pending rendering comands */
|
||||
|
||||
intelDisplayBuffer(dPriv, back_surf, NULL);
|
||||
intelDisplaySurface(dPriv, back_surf, NULL);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
@ -284,7 +284,7 @@ intelCopySubBuffer(__DRIdrawablePrivate * dPriv, int x, int y, int w, int h)
|
|||
rect.x2 = w;
|
||||
rect.y2 = h;
|
||||
_mesa_notifySwapBuffers(ctx); /* flush pending rendering comands */
|
||||
intelDisplayBuffer(dPriv, back_surf, &rect);
|
||||
intelDisplaySurface(dPriv, back_surf, &rect);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
|
|
@ -42,9 +42,9 @@ struct intel_framebuffer
|
|||
};
|
||||
|
||||
|
||||
extern void intelDisplayBuffer(__DRIdrawablePrivate * dPriv,
|
||||
struct pipe_surface *surf,
|
||||
const drm_clip_rect_t * rect);
|
||||
extern void intelDisplaySurface(__DRIdrawablePrivate * dPriv,
|
||||
struct pipe_surface *surf,
|
||||
const drm_clip_rect_t * rect);
|
||||
|
||||
extern void intelSwapBuffers(__DRIdrawablePrivate * dPriv);
|
||||
|
||||
|
|
|
|||
|
|
@ -192,7 +192,7 @@ intel_flush_frontbuffer( struct pipe_winsys *sws,
|
|||
struct intel_context *intel = intel_pipe_winsys(sws)->intel;
|
||||
__DRIdrawablePrivate *dPriv = intel->driDrawable;
|
||||
|
||||
intelDisplayBuffer(dPriv, surf, NULL);
|
||||
intelDisplaySurface(dPriv, surf, NULL);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue