From 1928f7ec0e7b20ef25a8edf0535d467a08dd7a8e Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Thu, 24 Feb 2011 12:05:15 +0000 Subject: [PATCH] backend: remove untested fruity backend This backend hasn't been used for years now and so because it is untested code and almost certainly doesn't work any more it would be a burdon to continue trying to maintain it. Considering that we are now looking at moving OpenGL window system integration code down from Clutter backends into Cogl that will be easier if we don't have to consider this backend. --- cogl/Makefile.am | 4 ---- cogl/winsys/cogl-winsys-fruity.c | 35 -------------------------------- configure.ac | 2 -- 3 files changed, 41 deletions(-) delete mode 100644 cogl/winsys/cogl-winsys-fruity.c diff --git a/cogl/Makefile.am b/cogl/Makefile.am index 0d97216a3..ce3ff0d3b 100644 --- a/cogl/Makefile.am +++ b/cogl/Makefile.am @@ -344,10 +344,6 @@ cogl_sources_c += \ $(srcdir)/winsys/cogl-winsys-egl.c \ $(srcdir)/winsys/cogl-winsys-stub.c endif -if SUPPORT_EGL_PLATFORM_FRUITY -cogl_sources_c += \ - $(srcdir)/winsys/cogl-winsys-fruity.c -endif if SUPPORT_EGL_PLATFORM_DRM_SURFACELESS cogl_sources_c += \ $(srcdir)/winsys/cogl-winsys-egl.c \ diff --git a/cogl/winsys/cogl-winsys-fruity.c b/cogl/winsys/cogl-winsys-fruity.c deleted file mode 100644 index 9c937e4bc..000000000 --- a/cogl/winsys/cogl-winsys-fruity.c +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Cogl - * - * An object oriented GL/GLES Abstraction/Utility Layer - * - * Copyright (C) 2007,2008,2009 Intel Corporation. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library. If not, see . - * - * - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "cogl.h" - -CoglFuncPtr -_cogl_winsys_get_proc_address (const char *name) -{ - return NULL; -} - diff --git a/configure.ac b/configure.ac index 1ef4e406c..45bfe8c72 100644 --- a/configure.ac +++ b/configure.ac @@ -273,9 +273,7 @@ AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_POWERVR_X11, [false]) AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_POWERVR_NULL, [false]) AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_POWERVR_GDL, [false]) AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_DRM_SURFACELESS, [false]) -AM_CONDITIONAL(SUPPORT_EGL_PLATFORM_FRUITY, [false]) AM_CONDITIONAL(SUPPORT_OSX, [false]) -AM_CONDITIONAL(SUPPORT_FRUITY, [false]) AM_CONDITIONAL(SUPPORT_WIN32, [false]) AM_CONDITIONAL(SUPPORT_CEX100, [false]) AM_CONDITIONAL(SUPPORT_WAYLAND, [false])