Comment out unused variable
authorChris Michael <devilhorns@comcast.net>
Tue, 11 Jun 2013 16:51:54 +0000 (17:51 +0100)
committerChris Michael <devilhorns@comcast.net>
Thu, 13 Jun 2013 15:46:48 +0000 (16:46 +0100)
Signed-off-by: Chris Michael <devilhorns@comcast.net>
src/bin/e_wayland/e_renderer.c

index 0eca3653b9fb6b6694d005fcf1693f162fe2e173..7ea1523c957820207bd5e3fb3334f7de25cb6e9d 100644 (file)
@@ -96,7 +96,7 @@ _e_renderer_region_repaint(E_Surface *surface, E_Output *output, pixman_region32
    E_Renderer_Output_State *out_state;
    E_Renderer_Surface_State *surf_state;
    pixman_region32_t fregion;
-   pixman_box32_t *ext;
+   /* pixman_box32_t *ext = NULL; */
 
    out_state = output->state;
    surf_state = surface->state;
@@ -112,7 +112,7 @@ _e_renderer_region_repaint(E_Surface *surface, E_Output *output, pixman_region32
    else
      pixman_region32_copy(&fregion, region);
 
-   ext = pixman_region32_extents(&fregion);
+   /* ext = pixman_region32_extents(&fregion); */
    /* printf("\tRepainting Region: %d %d %d %d\n",  */
    /*        ext->x1, ext->y1, (ext->x2 - ext->x1),  */
    /*        (ext->y2 - ext->y1)); */
@@ -263,7 +263,7 @@ static void
 _e_renderer_cb_attach(E_Surface *surface, struct wl_buffer *buffer)
 {
    E_Renderer_Surface_State *state;
-   pixman_format_code_t format;
+   pixman_format_code_t format = 0;
    Evas_Coord w = 0, h = 0;
    void *data;
    int stride = 0;