diff options
author | Chia-I Wu <[email protected]> | 2010-11-03 16:07:23 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-11-03 16:08:47 +0800 |
commit | 828d944fd6670b44b2dd640a92bc0f9fe983a520 (patch) | |
tree | 43051bbc2b761039686742b8af9789dcad96ee85 /src/gallium/state_trackers/egl/fbdev | |
parent | 250d81da256fc919544f8c97b4e2364d3795f6c0 (diff) |
st/egl: Remove flush_frontbuffer and swap_buffers.
They are deprecated by native_surface::present and there is no user of
them.
Diffstat (limited to 'src/gallium/state_trackers/egl/fbdev')
-rw-r--r-- | src/gallium/state_trackers/egl/fbdev/native_fbdev.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/egl/fbdev/native_fbdev.c b/src/gallium/state_trackers/egl/fbdev/native_fbdev.c index 728dba3ff49..1b5ea8bf9d5 100644 --- a/src/gallium/state_trackers/egl/fbdev/native_fbdev.c +++ b/src/gallium/state_trackers/egl/fbdev/native_fbdev.c @@ -207,8 +207,6 @@ fbdev_display_create_scanout_surface(struct native_display *ndpy, resource_surface_set_size(fbsurf->rsurf, fbsurf->width, fbsurf->height); fbsurf->base.destroy = fbdev_surface_destroy; - fbsurf->base.swap_buffers = fbdev_surface_swap_buffers; - fbsurf->base.flush_frontbuffer = fbdev_surface_flush_frontbuffer; fbsurf->base.present = fbdev_surface_present; fbsurf->base.validate = fbdev_surface_validate; fbsurf->base.wait = fbdev_surface_wait; |