mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
egl: Rename gst_egl_image_memory_can_map() to is_mappable()
This commit is contained in:
parent
4ca26a3c45
commit
5e948472ed
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ typedef struct
|
||||||
#define GST_EGL_IMAGE_MEMORY(mem) ((GstEGLImageMemory*)(mem))
|
#define GST_EGL_IMAGE_MEMORY(mem) ((GstEGLImageMemory*)(mem))
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
gst_egl_image_memory_can_map (void)
|
gst_egl_image_memory_is_mappable (void)
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,7 @@ typedef enum {
|
||||||
typedef struct _GstEGLDisplay GstEGLDisplay;
|
typedef struct _GstEGLDisplay GstEGLDisplay;
|
||||||
|
|
||||||
/* EGLImage GstMemory handling */
|
/* 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);
|
gboolean gst_is_egl_image_memory (GstMemory * mem);
|
||||||
EGLImageKHR gst_egl_image_memory_get_image (GstMemory * mem);
|
EGLImageKHR gst_egl_image_memory_get_image (GstMemory * mem);
|
||||||
GstEGLDisplay * gst_egl_image_memory_get_display (GstMemory * mem);
|
GstEGLDisplay * gst_egl_image_memory_get_display (GstMemory * mem);
|
||||||
|
|
Loading…
Reference in a new issue