From 6b3d682f4e898226bf1d0dc25042ee237bdc1a9b Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 23 Nov 2016 01:09:19 +0100 Subject: vo_opengl: hwdec_d3d11egl: fix ANGLE fallback define This was a typo in the extensiuon spec and was probably always broken. Could have led to broken builds when used with ancient ANGLE headers (or possibly generic EGL headers). --- video/out/opengl/hwdec_d3d11egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/out/opengl/hwdec_d3d11egl.c b/video/out/opengl/hwdec_d3d11egl.c index 690609b5b9..0ca954b046 100644 --- a/video/out/opengl/hwdec_d3d11egl.c +++ b/video/out/opengl/hwdec_d3d11egl.c @@ -32,7 +32,7 @@ #include "video/decode/d3d.h" #ifndef EGL_D3D_TEXTURE_SUBRESOURCE_ID_ANGLE -#define EGL_D3D_TEXTURE_SUBRESOURCE_ID_ANGLE 0x3AAB +#define EGL_D3D_TEXTURE_SUBRESOURCE_ID_ANGLE 0x33AB #endif struct priv { -- cgit v1.2.3