Make process_commands_generation variable type coherent

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Pavel Grunt <pgrunt@redhat.com>
This commit is contained in:
Frediano Ziglio 2016-06-28 07:12:16 +01:00
parent 0a13066396
commit e58d22a37b
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@
static void drawable_draw(DisplayChannel *display, Drawable *drawable);
static Drawable *display_channel_drawable_try_new(DisplayChannel *display,
int process_commands_generation);
uint32_t process_commands_generation);
uint32_t display_channel_generate_uid(DisplayChannel *display)
{
@ -1081,7 +1081,7 @@ static void display_channel_add_drawable(DisplayChannel *display, Drawable *draw
}
void display_channel_process_draw(DisplayChannel *display, RedDrawable *red_drawable,
int process_commands_generation)
uint32_t process_commands_generation)
{
Drawable *drawable =
display_channel_get_drawable(display, red_drawable->effect, red_drawable,
@ -1264,7 +1264,7 @@ static void drawables_init(DisplayChannel *display)
* @return pointer to uninitialized Drawable or NULL on failure
*/
static Drawable *display_channel_drawable_try_new(DisplayChannel *display,
int process_commands_generation)
uint32_t process_commands_generation)
{
Drawable *drawable;

View File

@ -270,7 +270,7 @@ void display_channel_destroy_surfaces (DisplayCha
uint32_t display_channel_generate_uid (DisplayChannel *display);
void display_channel_process_draw (DisplayChannel *display,
RedDrawable *red_drawable,
int process_commands_generation);
uint32_t process_commands_generation);
void display_channel_process_surface_cmd (DisplayChannel *display,
RedSurfaceCmd *surface,
int loadvm);