2010-01-10 13:04:29 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 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
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2010-01-10 13:04:29 -05:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Damien Lespiau <damien.lespiau@intel.com>
|
2010-07-03 18:46:03 -04:00
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
2010-01-10 13:04:29 -05:00
|
|
|
*/
|
|
|
|
|
2011-03-02 10:19:57 -05:00
|
|
|
#ifndef __COGL_PIXEL_BUFFER_PRIVATE_H__
|
|
|
|
#define __COGL_PIXEL_BUFFER_PRIVATE_H__
|
2010-01-10 13:04:29 -05:00
|
|
|
|
2012-04-16 09:14:10 -04:00
|
|
|
#include "cogl-object-private.h"
|
2010-01-10 13:04:29 -05:00
|
|
|
#include "cogl-buffer-private.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-03-02 10:19:57 -05:00
|
|
|
struct _CoglPixelBuffer
|
2010-01-10 13:04:29 -05:00
|
|
|
{
|
|
|
|
CoglBuffer _parent;
|
2010-07-03 15:24:36 -04:00
|
|
|
};
|
2010-01-10 13:04:29 -05:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2011-03-02 10:19:57 -05:00
|
|
|
#endif /* __COGL_PIXEL_BUFFER_PRIVATE_H__ */
|