mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
c033f8fad2
So applications and elements implemented outside GStreamer can reuse our infrastructure Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1472>
16 lines
250 B
C
16 lines
250 B
C
#ifndef __GST_CUDA_GLSTUB_H__
|
|
#define __GST_CUDA_GLSTUB_H__
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
typedef enum
|
|
{
|
|
CU_GL_DEVICE_LIST_ALL = 0x01,
|
|
} CUGLDeviceList;
|
|
|
|
#define cuGLGetDevices cuGLGetDevices_v2
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_CUDA_GLSTUB_H__ */
|