From: Brian Date: Wed, 7 Nov 2007 19:06:50 +0000 (-0700) Subject: just reorder a few members of pipe_winsys, update comments X-Git-Tag: 062012170305~17580^2~390^2~3368 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0852cf8611dd77b564db1df9b61e035d9ea4b280;p=profile%2Fivi%2Fmesa.git just reorder a few members of pipe_winsys, update comments --- diff --git a/src/mesa/pipe/p_winsys.h b/src/mesa/pipe/p_winsys.h index e4c888a..9dbac87 100644 --- a/src/mesa/pipe/p_winsys.h +++ b/src/mesa/pipe/p_winsys.h @@ -60,6 +60,12 @@ struct pipe_buffer_handle; struct pipe_winsys { + /** Returns name of this winsys interface */ + const char *(*get_name)( struct pipe_winsys *sws ); + + /** Wait for any buffered rendering to finish */ + void (*wait_idle)( struct pipe_winsys *sws ); + /** * Do any special operations to ensure frontbuffer contents are * displayed, eg copy fake frontbuffer. @@ -147,13 +153,6 @@ struct pipe_winsys unsigned long size, void *data); - - /** Wait for any hw swapbuffers, etc. to finish */ - void (*wait_idle)( struct pipe_winsys *sws ); - - /** Queries */ - const char *(*get_name)( struct pipe_winsys *sws ); - };