remove uuid references from e_pixmap.c

I don't know what these are for?
This commit is contained in:
Mike Blumenkrantz 2017-04-07 16:07:25 -04:00
parent 174b0d040b
commit ffb402786b
1 changed files with 0 additions and 3 deletions

View File

@ -2,7 +2,6 @@
#ifdef HAVE_WAYLAND #ifdef HAVE_WAYLAND
# include "e_comp_wl.h" # include "e_comp_wl.h"
# include <uuid.h>
# ifndef EGL_TEXTURE_FORMAT # ifndef EGL_TEXTURE_FORMAT
# define EGL_TEXTURE_FORMAT 0x3080 # define EGL_TEXTURE_FORMAT 0x3080
# endif # endif
@ -53,7 +52,6 @@ struct _E_Pixmap
struct wl_listener held_buffer_destroy_listener; struct wl_listener held_buffer_destroy_listener;
void *data; void *data;
Eina_Rectangle opaque; Eina_Rectangle opaque;
uuid_t uuid;
Eina_List *free_buffers; Eina_List *free_buffers;
#endif #endif
@ -351,7 +349,6 @@ e_pixmap_new(E_Pixmap_Type type, ...)
cp = _e_pixmap_new(type); cp = _e_pixmap_new(type);
cp->win = id; cp->win = id;
eina_hash_add(pixmaps[type], &id, cp); eina_hash_add(pixmaps[type], &id, cp);
uuid_generate(cp->uuid);
#endif #endif
break; break;
default: break; default: break;