mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
softpipe: Match pipe_context::render_condition prototype.
To silence compiler warnings. Trivial.
This commit is contained in:
parent
e1d4c966dc
commit
f2d71df0ca
2 changed files with 5 additions and 5 deletions
|
|
@ -178,10 +178,10 @@ softpipe_is_resource_referenced( struct pipe_context *pipe,
|
|||
|
||||
|
||||
static void
|
||||
softpipe_render_condition( struct pipe_context *pipe,
|
||||
struct pipe_query *query,
|
||||
boolean condition,
|
||||
uint mode )
|
||||
softpipe_render_condition(struct pipe_context *pipe,
|
||||
struct pipe_query *query,
|
||||
boolean condition,
|
||||
enum pipe_render_cond_flag mode)
|
||||
{
|
||||
struct softpipe_context *softpipe = softpipe_context( pipe );
|
||||
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ struct softpipe_context {
|
|||
|
||||
/** Conditional query object and mode */
|
||||
struct pipe_query *render_cond_query;
|
||||
uint render_cond_mode;
|
||||
enum pipe_render_cond_flag render_cond_mode;
|
||||
boolean render_cond_cond;
|
||||
|
||||
/** Polygon stipple items */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue