From fa471acc0030c77152c9b72e8f31f6c49f706f01 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 24 Oct 2012 12:30:53 +0100 Subject: qemugl: Remove since support for it was removed from qemu (From OE-Core rev: 0195a08f77fe0e01b2d7548ccffeaf89d2d780e1) Signed-off-by: Richard Purdie --- .../mesa/qemugl/extensions_emulation.patch | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 meta/recipes-graphics/mesa/qemugl/extensions_emulation.patch (limited to 'meta/recipes-graphics/mesa/qemugl/extensions_emulation.patch') diff --git a/meta/recipes-graphics/mesa/qemugl/extensions_emulation.patch b/meta/recipes-graphics/mesa/qemugl/extensions_emulation.patch deleted file mode 100644 index 08418c2f4b..0000000000 --- a/meta/recipes-graphics/mesa/qemugl/extensions_emulation.patch +++ /dev/null @@ -1,34 +0,0 @@ -Hide some GLX extensions by default to avoid guest call missing GLX API. It's -hacky to implement these APIs, so hide these extensions as fix. - -Upstream-Status: Pending - -Signed-off-by: Zhai Edwin - -Index: git/opengl_client.c -=================================================================== ---- git.orig/opengl_client.c 2012-03-16 18:22:27.000000000 +0800 -+++ git/opengl_client.c 2012-03-16 18:52:06.000000000 +0800 -@@ -105,6 +105,12 @@ - "NO_MOVE", /* default : set if TCP/IP communication */ - }; - -+/* Hiding some GLX extensions from guest */ -+static const char* hiding_extensions = -+ "GLX_MESA_copy_sub_buffer,\ -+ GLX_MESA_multithread_makecurrent,\ -+ GLX_MESA_swap_control,\ -+ "; - - #ifdef WIN32 - -@@ -3516,7 +3522,8 @@ - static void removeUnwantedExtensions(char* ret) - { - char* toBeRemoved = getenv("GL_REMOVE_EXTENSIONS"); -- if (toBeRemoved == NULL) return; -+ if (toBeRemoved == NULL) -+ toBeRemoved = hiding_extensions; - toBeRemoved = strdup(toBeRemoved); - char* iterToBeRemoved = toBeRemoved; - while(*iterToBeRemoved) -- cgit v1.2.3-54-g00ecf