mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
e96687d88d
Remove all the d3d11 and dxgi header version dependent ifdef and bump the minimum requirement to d3d11_4.h and dxgi1_6.h. We are already failing support old Visual Studio (Windows SDK actually) such as Visual Studio 2015. Note that our MinGW toolchain satisfies the requirement. From runtime point of view, this change should be fine since we are checking OS version with IUnknown::QueryInterface() everywhere in order to check API availability Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1684>
15 lines
248 B
Text
15 lines
248 B
Text
/* gstd3d11config.h */
|
|
|
|
#ifndef __GST_D3D11_CONFIG_H__
|
|
#define __GST_D3D11_CONFIG_H__
|
|
|
|
#include <gst/gst.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#mesondefine GST_D3D11_WINAPI_ONLY_APP
|
|
#mesondefine GST_D3D11_WINAPI_APP
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_D3D11_CONFIG_H__ */
|