cogl: Move types definition to a common header

Avoids re-defining the types and cyclic dependencies between headers.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4100>
This commit is contained in:
Bilal Elmoussaoui
2024-10-20 16:41:33 +02:00
committed by Marge Bot
parent 80316eb1d6
commit 34f4b8064f
23 changed files with 23 additions and 63 deletions

View File

@ -37,11 +37,6 @@
#error "Only <cogl/cogl.h> can be included directly."
#endif
/* We forward declare the CoglAttributeBuffer type here to avoid some circular
* dependency issues with the following headers.
*/
typedef struct _CoglAttributeBuffer CoglAttributeBuffer;
#include "cogl/cogl-context.h"
#include <glib-object.h>
@ -62,7 +57,6 @@ G_BEGIN_DECLS
#define COGL_ATTRIBUTE_BUFFER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), COGL_TYPE_ATTRIBUTE_BUFFER, CoglAttributeBufferClass))
typedef struct _CoglAttributeBufferClass CoglAttributeBufferClass;
typedef struct _CoglAttributeBuffer CoglAttributeBuffer;
G_DEFINE_AUTOPTR_CLEANUP_FUNC (CoglAttributeBuffer, g_object_unref)