2010-01-10 13:04:29 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2010-01-10 13:04:29 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Intel Corporation.
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2010-03-01 07:56:10 -05:00
|
|
|
*
|
|
|
|
*
|
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>
|
|
|
|
|
2018-11-23 02:42:05 -05:00
|
|
|
G_BEGIN_DECLS
|
2010-01-10 13:04:29 -05:00
|
|
|
|
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
|
|
|
|
2018-11-23 02:42:05 -05:00
|
|
|
G_END_DECLS
|
2010-01-10 13:04:29 -05:00
|
|
|
|
2011-03-02 10:19:57 -05:00
|
|
|
#endif /* __COGL_PIXEL_BUFFER_PRIVATE_H__ */
|