Handle glFlush/glFinish through the state tracker.

This commit is contained in:
Keith Whitwell
2007-08-10 12:57:14 +01:00
parent 9ac1a8d416
commit 5c2c056000
15 changed files with 212 additions and 57 deletions

View File

@@ -240,60 +240,14 @@ intelFlush(GLcontext * ctx)
} }
/**
* Check if we need to rotate/warp the front color buffer to the
* rotated screen. We generally need to do this when we get a glFlush
* or glFinish after drawing to the front color buffer.
* If no rotation, just copy the private fake front buffer to the real one.
*/
static void
intelCheckFrontUpdate(GLcontext * ctx)
{
struct intel_context *intel = intel_context(ctx);
/* rely on _ColorDrawBufferMask being kept up to date by mesa
even for window-fbos. */
/* not sure. Might need that for all masks including
BUFFER_BIT_FRONT_LEFT maybe? */
if (intel->ctx.DrawBuffer->_ColorDrawBufferMask[0] ==
BUFFER_BIT_FRONT_LEFT) {
__DRIdrawablePrivate *dPriv = intel->driDrawable;
intelCopyBuffer(dPriv, NULL);
}
}
/**
* Called via glFlush.
*/
static void
intelglFlush(GLcontext * ctx)
{
intelFlush(ctx);
intelCheckFrontUpdate(ctx);
}
void
intelFinish(GLcontext * ctx)
{
struct intel_context *intel = intel_context(ctx);
intelFlush(ctx);
if (intel->batch->last_fence) {
driFenceFinish(intel->batch->last_fence,
0, GL_FALSE);
driFenceUnReference(intel->batch->last_fence);
intel->batch->last_fence = NULL;
}
intelCheckFrontUpdate(ctx);
}
static void static void
intelInitDriverFunctions(struct dd_function_table *functions) intelInitDriverFunctions(struct dd_function_table *functions)
{ {
_mesa_init_driver_functions(functions); _mesa_init_driver_functions(functions);
functions->Flush = intelglFlush;
functions->Finish = intelFinish;
functions->GetString = intelGetString; functions->GetString = intelGetString;
functions->UpdateState = intelInvalidateState; functions->UpdateState = intelInvalidateState;

View File

@@ -37,6 +37,7 @@
#include "intel_context.h" #include "intel_context.h"
#include "intel_batchbuffer.h" #include "intel_batchbuffer.h"
#include "intel_pipe.h" #include "intel_pipe.h"
#include "intel_blit.h"
#include "pipe/i915simple/i915_winsys.h" #include "pipe/i915simple/i915_winsys.h"
@@ -171,7 +172,7 @@ static unsigned *intel_i915_batch_start( struct i915_winsys *sws,
if (intel_batchbuffer_space( intel->batch ) >= dwords * 4) { if (intel_batchbuffer_space( intel->batch ) >= dwords * 4) {
/* XXX: Hmm, the driver can't really do much with this pointer: /* XXX: Hmm, the driver can't really do much with this pointer:
*/ */
return intel->batch->ptr; return (unsigned *)intel->batch->ptr;
} }
else else
return NULL; return NULL;
@@ -242,6 +243,16 @@ static void intel_i915_printf( struct i915_winsys *sws,
} }
static void
intel_i915_flush_frontbuffer( struct i915_winsys *sws )
{
struct intel_context *intel = intel_i915_winsys(sws)->intel;
__DRIdrawablePrivate *dPriv = intel->driDrawable;
intelCopyBuffer(dPriv, NULL);
}
struct pipe_context * struct pipe_context *
intel_create_i915simple( struct intel_context *intel ) intel_create_i915simple( struct intel_context *intel )
{ {
@@ -264,6 +275,7 @@ intel_create_i915simple( struct intel_context *intel )
iws->winsys.batch_reloc = intel_i915_batch_reloc; iws->winsys.batch_reloc = intel_i915_batch_reloc;
iws->winsys.batch_flush = intel_i915_batch_flush; iws->winsys.batch_flush = intel_i915_batch_flush;
iws->winsys.batch_wait_idle = intel_i915_batch_wait_idle; iws->winsys.batch_wait_idle = intel_i915_batch_wait_idle;
iws->winsys.flush_frontbuffer = intel_i915_flush_frontbuffer;
iws->intel = intel; iws->intel = intel;
/* Create the i915simple context: /* Create the i915simple context:

View File

@@ -36,6 +36,8 @@
#include "intel_context.h" #include "intel_context.h"
#include "intel_pipe.h" #include "intel_pipe.h"
#include "intel_batchbuffer.h"
#include "intel_blit.h"
#include "pipe/softpipe/sp_winsys.h" #include "pipe/softpipe/sp_winsys.h"
#include "pipe/p_defines.h" #include "pipe/p_defines.h"
@@ -175,6 +177,33 @@ intel_supported_formats(struct pipe_context *pipe, GLuint *numFormats)
} }
static void intel_wait_idle( struct softpipe_winsys *sws )
{
struct intel_context *intel = intel_softpipe_winsys(sws)->intel;
if (intel->batch->last_fence) {
driFenceFinish(intel->batch->last_fence,
DRM_FENCE_TYPE_EXE | DRM_I915_FENCE_TYPE_RW, GL_FALSE);
driFenceUnReference(intel->batch->last_fence);
intel->batch->last_fence = NULL;
}
}
/* The state tracker (should!) keep track of whether the fake
* frontbuffer has been touched by any rendering since the last time
* we copied its contents to the real frontbuffer. Our task is easy:
*/
static void
intel_flush_frontbuffer( struct softpipe_winsys *sws )
{
struct intel_context *intel = intel_softpipe_winsys(sws)->intel;
__DRIdrawablePrivate *dPriv = intel->driDrawable;
intelCopyBuffer(dPriv, NULL);
}
struct pipe_context * struct pipe_context *
intel_create_softpipe( struct intel_context *intel ) intel_create_softpipe( struct intel_context *intel )
@@ -197,6 +226,8 @@ intel_create_softpipe( struct intel_context *intel )
isws->sws.buffer_data = intel_buffer_data; isws->sws.buffer_data = intel_buffer_data;
isws->sws.buffer_subdata = intel_buffer_subdata; isws->sws.buffer_subdata = intel_buffer_subdata;
isws->sws.buffer_get_subdata = intel_buffer_get_subdata; isws->sws.buffer_get_subdata = intel_buffer_get_subdata;
isws->sws.flush_frontbuffer = intel_flush_frontbuffer;
isws->sws.wait_idle = intel_wait_idle;
isws->intel = intel; isws->intel = intel;
/* Create the softpipe context: /* Create the softpipe context:

View File

@@ -66,11 +66,10 @@ static void i915_flush( struct pipe_context *pipe,
FLUSH_BATCH(); FLUSH_BATCH();
} }
static void i915_finish(struct pipe_context *pipe) static void i915_wait_idle(struct pipe_context *pipe)
{ {
struct i915_context *i915 = i915_context(pipe); struct i915_context *i915 = i915_context(pipe);
i915_flush( pipe, 0 );
i915->winsys->batch_wait_idle( i915->winsys ); i915->winsys->batch_wait_idle( i915->winsys );
} }
@@ -78,5 +77,5 @@ static void i915_finish(struct pipe_context *pipe)
void i915_init_flush_functions( struct i915_context *i915 ) void i915_init_flush_functions( struct i915_context *i915 )
{ {
i915->pipe.flush = i915_flush; i915->pipe.flush = i915_flush;
i915->pipe.finish = i915_finish; i915->pipe.wait_idle = i915_wait_idle;
} }

View File

@@ -50,6 +50,12 @@ struct pipe_buffer_handle;
struct i915_winsys { struct i915_winsys {
/* Do any special operations to ensure frontbuffer contents are
* displayed, eg copy fake frontbuffer.
*/
void (*flush_frontbuffer)( struct i915_winsys *sws );
/* debug output /* debug output
*/ */
void (*printf)( struct i915_winsys *sws, void (*printf)( struct i915_winsys *sws,

View File

@@ -220,10 +220,14 @@ struct pipe_context {
struct pipe_mipmap_tree *mt ); struct pipe_mipmap_tree *mt );
/* Simple flush/finish support:
*/
void (*flush)( struct pipe_context *pipe, void (*flush)( struct pipe_context *pipe,
unsigned flags ); unsigned flags );
void (*finish)( struct pipe_context *pipe ); void (*wait_idle)( struct pipe_context *pipe );
void (*flush_frontbuffer)( struct pipe_context *pipe );
}; };

View File

@@ -221,7 +221,7 @@ struct pipe_context *softpipe_create( struct softpipe_winsys *sws )
softpipe->pipe.draw_vertices = softpipe_draw_vertices; softpipe->pipe.draw_vertices = softpipe_draw_vertices;
softpipe->pipe.clear = softpipe_clear; softpipe->pipe.clear = softpipe_clear;
softpipe->pipe.flush = softpipe_flush; softpipe->pipe.flush = softpipe_flush;
softpipe->pipe.finish = softpipe_finish; softpipe->pipe.wait_idle = softpipe_wait_idle;
softpipe->pipe.reset_occlusion_counter = softpipe_reset_occlusion_counter; softpipe->pipe.reset_occlusion_counter = softpipe_reset_occlusion_counter;
softpipe->pipe.get_occlusion_counter = softpipe_get_occlusion_counter; softpipe->pipe.get_occlusion_counter = softpipe_get_occlusion_counter;

View File

@@ -33,6 +33,7 @@
#include "pipe/p_defines.h" #include "pipe/p_defines.h"
#include "sp_flush.h" #include "sp_flush.h"
#include "sp_context.h" #include "sp_context.h"
#include "sp_winsys.h"
/* There will be actual work to do here. In future we may want a /* There will be actual work to do here. In future we may want a
* fence-like interface instead of finish, and perhaps flush will take * fence-like interface instead of finish, and perhaps flush will take
@@ -49,9 +50,21 @@ softpipe_flush( struct pipe_context *pipe,
} }
void void
softpipe_finish(struct pipe_context *pipe) softpipe_wait_idle(struct pipe_context *pipe)
{ {
/* Just calls into flush() /* Nothing to do.
* XXX: What about swapbuffers.
* XXX: Even more so - what about fake frontbuffer copies??
*/ */
softpipe_flush( pipe, 0 ); struct softpipe_context *softpipe = softpipe_context(pipe);
softpipe->winsys->wait_idle( softpipe->winsys );
}
void
softpipe_flush_frontbuffer( struct pipe_context *pipe )
{
struct softpipe_context *softpipe = softpipe_context(pipe);
softpipe->winsys->flush_frontbuffer( softpipe->winsys );
} }

View File

@@ -30,7 +30,7 @@
struct pipe_context; struct pipe_context;
void softpipe_finish(struct pipe_context *pipe);
void softpipe_flush(struct pipe_context *pipe, unsigned flags ); void softpipe_flush(struct pipe_context *pipe, unsigned flags );
void softpipe_wait_idle(struct pipe_context *pipe);
#endif #endif

View File

@@ -50,9 +50,19 @@ struct pipe_buffer_handle;
struct softpipe_winsys { struct softpipe_winsys {
/* Do any special operations to ensure frontbuffer contents are
* displayed, eg copy fake frontbuffer.
*/
void (*flush_frontbuffer)( struct softpipe_winsys *sws );
/* Wait for any hw swapbuffers, etc. to finish:
*/
void (*wait_idle)( struct softpipe_winsys *sws );
/* debug output /* debug output
*/ */
void (*printf)( const char *, ... ); void (*printf)( struct softpipe_winsys *sws,
const char *, ... );
/* The buffer manager is modeled after the dri_bugmgr interface, /* The buffer manager is modeled after the dri_bugmgr interface,

View File

@@ -194,6 +194,7 @@ STATETRACKER_SOURCES = \
state_tracker/st_atom_viewport.c \ state_tracker/st_atom_viewport.c \
state_tracker/st_cb_bufferobjects.c \ state_tracker/st_cb_bufferobjects.c \
state_tracker/st_cb_clear.c \ state_tracker/st_cb_clear.c \
state_tracker/st_cb_flush.c \
state_tracker/st_cb_drawpixels.c \ state_tracker/st_cb_drawpixels.c \
state_tracker/st_cb_fbo.c \ state_tracker/st_cb_fbo.c \
state_tracker/st_cb_program.c \ state_tracker/st_cb_program.c \

View File

@@ -0,0 +1,81 @@
/**************************************************************************
*
* Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
* IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
**************************************************************************/
/*
* Authors:
* Keith Whitwell <keith@tungstengraphics.com>
* Brian Paul
*/
#include "main/glheader.h"
#include "main/macros.h"
#include "st_context.h"
#include "st_cb_flush.h"
#include "pipe/p_context.h"
#include "pipe/p_defines.h"
static void st_flush(GLcontext *ctx)
{
struct st_context *st = ctx->st;
/* If there has been no rendering to the frontbuffer, consider
* short-circuiting this, or perhaps pass an "optional" flag down
* to the driver so that it can make the decision.
*/
st->pipe->flush( st->pipe, 0 );
/* XXX: temporary hack. This flag should only be set if we do any
* rendering to the front buffer.
*/
st->flags.frontbuffer_dirty = (ctx->DrawBuffer->_ColorDrawBufferMask[0] ==
BUFFER_BIT_FRONT_LEFT);
if (st->flags.frontbuffer_dirty) {
/* Hook for copying "fake" frontbuffer if necessary:
*/
st->pipe->flush_frontbuffer( st->pipe );
st->flags.frontbuffer_dirty = 0;
}
}
static void st_finish(GLcontext *ctx)
{
struct st_context *st = ctx->st;
st_flush( ctx );
st->pipe->wait_idle( st->pipe );
}
void st_init_flush_functions(struct dd_function_table *functions)
{
functions->Flush = st_flush;
functions->Finish = st_finish;
}

View File

@@ -0,0 +1,38 @@
/**************************************************************************
*
* Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
* IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
**************************************************************************/
#ifndef ST_CB_CLEAR_H
#define ST_CB_CLEAR_H
extern void
st_init_flush_functions(struct dd_function_table *functions);
#endif /* ST_CB_CLEAR_H */

View File

@@ -34,6 +34,7 @@
#include "st_cb_fbo.h" #include "st_cb_fbo.h"
#include "st_cb_readpixels.h" #include "st_cb_readpixels.h"
#include "st_cb_texture.h" #include "st_cb_texture.h"
#include "st_cb_flush.h"
#include "st_atom.h" #include "st_atom.h"
#include "st_draw.h" #include "st_draw.h"
#include "st_program.h" #include "st_program.h"
@@ -109,4 +110,5 @@ void st_init_driver_functions(struct dd_function_table *functions)
st_init_program_functions(functions); st_init_program_functions(functions);
st_init_readpixels_functions(functions); st_init_readpixels_functions(functions);
st_init_texture_functions(functions); st_init_texture_functions(functions);
st_init_flush_functions(functions);
} }

View File

@@ -90,6 +90,10 @@ struct st_context
struct gl_fragment_program *fragment_program; struct gl_fragment_program *fragment_program;
} cb; } cb;
struct {
GLuint frontbuffer_dirty:1;
} flags;
/* State to be validated: /* State to be validated:
*/ */
struct st_tracked_state **atoms; struct st_tracked_state **atoms;