gstreamer/subprojects/gst-plugins-bad/gst-libs/gst/cuda/stub/cudaGL.h
Thibault Saunier c033f8fad2 cuda: Factor out a public GstCUDA library
So applications and elements implemented outside GStreamer can reuse
our infrastructure

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1472>
2022-04-19 16:39:43 +00:00

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__ */