egl: Rename gst_egl_image_memory_can_map() to is_mappable()

This commit is contained in:
Sebastian Dröge 2013-02-25 13:31:00 +01:00
parent 4ca26a3c45
commit 5e948472ed
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ typedef struct
#define GST_EGL_IMAGE_MEMORY(mem) ((GstEGLImageMemory*)(mem))
gboolean
gst_egl_image_memory_can_map (void)
gst_egl_image_memory_is_mappable (void)
{
return FALSE;
}

View file

@ -45,7 +45,7 @@ typedef enum {
typedef struct _GstEGLDisplay GstEGLDisplay;
/* EGLImage GstMemory handling */
gboolean gst_egl_image_memory_can_map (void);
gboolean gst_egl_image_memory_is_mappable (void);
gboolean gst_is_egl_image_memory (GstMemory * mem);
EGLImageKHR gst_egl_image_memory_get_image (GstMemory * mem);
GstEGLDisplay * gst_egl_image_memory_get_display (GstMemory * mem);