Blame gegl/buffer/gegl-tile-storage.h

Packit Service 2781ba
/* This file is part of GEGL.
Packit Service 2781ba
 *
Packit Service 2781ba
 * This library is free software; you can redistribute it and/or
Packit Service 2781ba
 * modify it under the terms of the GNU Lesser General Public
Packit Service 2781ba
 * License as published by the Free Software Foundation; either
Packit Service 2781ba
 * version 3 of the License, or (at your option) any later version.
Packit Service 2781ba
 *
Packit Service 2781ba
 * This library is distributed in the hope that it will be useful,
Packit Service 2781ba
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2781ba
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 2781ba
 * Lesser General Public License for more details.
Packit Service 2781ba
 *
Packit Service 2781ba
 * You should have received a copy of the GNU Lesser General Public
Packit Service 2781ba
 * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
Packit Service 2781ba
 *
Packit Service 2781ba
 * Copyright 2006 Øyvind Kolås <pippin@gimp.org>
Packit Service 2781ba
 */
Packit Service 2781ba
Packit Service 2781ba
#ifndef __GEGL_TILE_STORAGE_H__
Packit Service 2781ba
#define __GEGL_TILE_STORAGE_H__
Packit Service 2781ba
Packit Service 2781ba
#include "gegl-tile-handler-chain.h"
Packit Service 2781ba
#include "gegl-tile-handler-cache.h"
Packit Service 2781ba
Packit Service 2781ba
/***
Packit Service 2781ba
 * GeglTileStorage provide the command API to GeglBuffer, and setup a chain of GeglTileHandler to
Packit Service 2781ba
 * treat and store tiles.
Packit Service 2781ba
 */
Packit Service 2781ba
Packit Service 2781ba
#define GEGL_TYPE_TILE_STORAGE            (gegl_tile_storage_get_type ())
Packit Service 2781ba
#define GEGL_TILE_STORAGE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_TILE_STORAGE, GeglTileStorage))
Packit Service 2781ba
#define GEGL_TILE_STORAGE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),  GEGL_TYPE_TILE_STORAGE, GeglTileStorageClass))
Packit Service 2781ba
#define GEGL_IS_TILE_STORAGE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_TILE_STORAGE))
Packit Service 2781ba
#define GEGL_IS_TILE_STORAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),  GEGL_TYPE_TILE_STORAGE))
Packit Service 2781ba
#define GEGL_TILE_STORAGE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),  GEGL_TYPE_TILE_STORAGE, GeglTileStorageClass))
Packit Service 2781ba
Packit Service 2781ba
struct _GeglTileStorage
Packit Service 2781ba
{
Packit Service 2781ba
  GeglTileHandlerChain parent_instance;
Packit Service 2781ba
  GeglTileHandlerCache *cache;
Packit Service 2781ba
  GMutex        *mutex;
Packit Service 2781ba
  const Babl    *format;
Packit Service 2781ba
  gint           tile_width;
Packit Service 2781ba
  gint           tile_height;
Packit Service 2781ba
  gint           tile_size;
Packit Service 2781ba
  gint           px_size;
Packit Service 2781ba
  gint           width;
Packit Service 2781ba
  gint           height;
Packit Service 2781ba
  gchar         *path;
Packit Service 2781ba
  gint           seen_zoom; /* the maximum zoom level we've seen tiles for */
Packit Service 2781ba
Packit Service 2781ba
  guint          idle_swapper;
Packit Service 2781ba
Packit Service 2781ba
  GeglTile      *hot_tile; /* cached tile for speeding up gegl_buffer_get_pixel
Packit Service 2781ba
                              and gegl_buffer_set_pixel (1x1 sized gets/sets)*/
Packit Service 2781ba
};
Packit Service 2781ba
Packit Service 2781ba
struct _GeglTileStorageClass
Packit Service 2781ba
{
Packit Service 2781ba
  GeglTileHandlerChainClass parent_class;
Packit Service 2781ba
};
Packit Service 2781ba
Packit Service 2781ba
GType gegl_tile_storage_get_type (void) G_GNUC_CONST;
Packit Service 2781ba
Packit Service 2781ba
GeglTileStorage *
Packit Service 2781ba
gegl_tile_storage_new (GeglTileBackend *backend);
Packit Service 2781ba
Packit Service 2781ba
#endif