removed. removed. synced from gegl. Now includes the installed

* app/gegl/gegl/buffer/gegl-buffer-types.h: removed.
* app/gegl/gegl/buffer/: removed.
* app/gegl/gegl/gegl-operation.h: synced from gegl. Now includes
the installed gegl-buffer.h which contains the public typedefs
needed for implementing operations anyways.

svn path=/trunk/; revision=24630
This commit is contained in:
Øyvind Kolås 2008-01-16 22:39:25 +00:00
parent e8fcbfcfa3
commit 6e1f1ce140
3 changed files with 9 additions and 55 deletions

View File

@ -1,3 +1,11 @@
2008-01-16 Øyvind Kolås <pippin@gimp.org>
* app/gegl/gegl/buffer/gegl-buffer-types.h: removed.
* app/gegl/gegl/buffer/: removed.
* app/gegl/gegl/gegl-operation.h: synced from gegl. Now includes
the installed gegl-buffer.h which contains the public typedefs
needed for implementing operations anyways.
2008-01-16 Sven Neumann <sven@gimp.org>
* app/base/boundary.c: minor cleanup.

View File

@ -1,54 +0,0 @@
/* This file is part of GEGL.
*
* 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 3 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 <http://www.gnu.org/licenses/>.
*
* Copyright 2006,2007 Øyvind Kolås <pippin@gimp.org>
*/
#ifndef __GEGL_BUFFER_TYPES_H__
#define __GEGL_BUFFER_TYPES_H__
typedef struct _GeglSampler GeglSampler;
typedef struct _GeglTile GeglTile;
typedef struct _GeglTileClass GeglTileClass;
typedef struct _GeglProvider GeglProvider;
typedef struct _GeglProviderClass GeglProviderClass;
typedef struct _GeglTileBackend GeglTileBackend;
typedef struct _GeglTileBackendClass GeglTileBackendClass;
typedef struct _GeglHandler GeglHandler;
typedef struct _GeglHandlerClass GeglHandlerClass;
typedef struct _GeglHandlers GeglHandlers;
typedef struct _GeglHandlersClass GeglHandlersClass;
typedef struct _GeglStorage GeglStorage;
typedef struct _GeglStorageClass GeglStorageClass;
#ifndef __GEGL_BUFFER_H__
typedef struct _GeglBuffer GeglBuffer;
#endif
typedef struct _GeglBufferClass GeglBufferClass;
typedef struct _GeglCache GeglCache;
typedef struct _GeglCacheClass GeglCacheClass;
typedef struct _GeglBufferAllocator GeglBufferAllocator;
typedef struct _GeglBufferAllocatorClass GeglBufferAllocatorClass;
typedef struct _GeglRegion GeglRegion;
#endif

View File

@ -23,7 +23,7 @@
#include <glib-object.h>
#include <babl/babl.h>
#include "gegl-types.h"
#include "buffer/gegl-buffer-types.h"
#include "buffer/gegl-buffer.h"
G_BEGIN_DECLS