mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +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
|
||||
{
|
||||
#if HAVE_IOS
|
||||
CVOpenGLESTextureCacheRef *cache;
|
||||
CVOpenGLESTextureRef texture;
|
||||
#else
|
||||
CVOpenGLTextureCacheRef *cache;
|
||||
CVOpenGLTextureRef texture;
|
||||
#endif
|
||||
|
||||
} TextureWrapper;
|
||||
|
||||
|
|
Loading…
Reference in a new issue