mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
applemedia: Fix video texture cache build issue on MacOS
https://bugzilla.gnome.org/show_bug.cgi?id=779247
This commit is contained in:
parent
e557e93f3b
commit
6e4354600d
1 changed files with 5 additions and 0 deletions
|
@ -44,8 +44,13 @@ typedef struct _ContextThreadData
|
||||||
|
|
||||||
typedef struct _TextureWrapper
|
typedef struct _TextureWrapper
|
||||||
{
|
{
|
||||||
|
#if HAVE_IOS
|
||||||
CVOpenGLESTextureCacheRef *cache;
|
CVOpenGLESTextureCacheRef *cache;
|
||||||
CVOpenGLESTextureRef texture;
|
CVOpenGLESTextureRef texture;
|
||||||
|
#else
|
||||||
|
CVOpenGLTextureCacheRef *cache;
|
||||||
|
CVOpenGLTextureRef texture;
|
||||||
|
#endif
|
||||||
|
|
||||||
} TextureWrapper;
|
} TextureWrapper;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue