evas: Mark native_surface as const

The void* argument should be considered read-only.
This doesn't change anything, really.
This commit is contained in:
Jean-Philippe Andre 2016-08-08 15:15:54 +09:00
parent 2de14b985c
commit f06506c970
1 changed files with 1 additions and 1 deletions

View File

@ -2366,7 +2366,7 @@ static void *
eng_image_native_set(void *data, void *image, void *native)
{
Render_Engine *re = (Render_Engine *)data;
Evas_Native_Surface *ns = native;
const Evas_Native_Surface *ns = native;
Evas_GL_Image *im = image, *im2 = NULL;
Visual *vis = NULL;
Pixmap pm = 0;