summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/egl/common/native.h
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-11-03 16:07:23 +0800
committerChia-I Wu <olv@lunarg.com>2010-11-03 16:08:47 +0800
commit828d944fd6670b44b2dd640a92bc0f9fe983a520 (patch)
tree43051bbc2b761039686742b8af9789dcad96ee85 /src/gallium/state_trackers/egl/common/native.h
parent250d81da256fc919544f8c97b4e2364d3795f6c0 (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/common/native.h')
-rw-r--r--src/gallium/state_trackers/egl/common/native.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/gallium/state_trackers/egl/common/native.h b/src/gallium/state_trackers/egl/common/native.h
index 446c6b45a9..07ff87a554 100644
--- a/src/gallium/state_trackers/egl/common/native.h
+++ b/src/gallium/state_trackers/egl/common/native.h
@@ -76,19 +76,6 @@ struct native_surface {
void (*destroy)(struct native_surface *nsurf);
/**
- * Swap the front and back buffers so that the back buffer is visible. It
- * is no-op if the surface is single-buffered. The contents of the back
- * buffer after swapping may or may not be preserved.
- */
- boolean (*swap_buffers)(struct native_surface *nsurf);
-
- /**
- * Make the front buffer visible. In some native displays, changes to the
- * front buffer might not be visible immediately and require manual flush.
- */
- boolean (*flush_frontbuffer)(struct native_surface *nsurf);
-
- /**
* Present the given buffer to the native engine.
*/
boolean (*present)(struct native_surface *nsurf,