gskglrenderer: Use gboolean instead of bool

This commit is contained in:
Fabio Lagalla 2021-01-26 14:57:02 +01:00
parent 04000f28e7
commit 1b698c896e
3 changed files with 6 additions and 6 deletions

View File

@ -859,7 +859,7 @@ void
ops_set_linear_gradient (RenderOpBuilder *self,
guint n_color_stops,
const GskColorStop *color_stops,
bool repeat,
gboolean repeat,
float start_x,
float start_y,
float end_x,
@ -924,7 +924,7 @@ void
ops_set_radial_gradient (RenderOpBuilder *self,
guint n_color_stops,
const GskColorStop *color_stops,
bool repeat,
gboolean repeat,
float center_x,
float center_y,
float start,

View File

@ -317,7 +317,7 @@ void ops_set_unblurred_outset_shadow (RenderOpBuilder *se
void ops_set_linear_gradient (RenderOpBuilder *self,
guint n_color_stops,
const GskColorStop *color_stops,
bool repeat,
gboolean repeat,
float start_x,
float start_y,
float end_x,
@ -325,7 +325,7 @@ void ops_set_linear_gradient (RenderOpBuilder *self,
void ops_set_radial_gradient (RenderOpBuilder *self,
guint n_color_stops,
const GskColorStop *color_stops,
bool repeat,
gboolean repeat,
float center_x,
float center_y,
float start,

View File

@ -146,7 +146,7 @@ typedef struct
IntUniformValue n_color_stops;
float start_point[2];
float end_point[2];
bool repeat;
gboolean repeat;
} OpLinearGradient;
typedef struct
@ -157,7 +157,7 @@ typedef struct
float end;
float radius[2];
float center[2];
bool repeat;
gboolean repeat;
} OpRadialGradient;
typedef struct