From 4ce4a2b134c85e4b44afdf4a03ae7467392d1844 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Tue, 9 Oct 2018 19:46:13 -0300 Subject: [PATCH] cogl: Expose more headers for introspection This will allow CoglFramebuffer and its implementations to be exposed to GJS and other language bindings. This is a necessary part of the bigger work to make framebuffer management explicit. --- cogl/cogl/Makefile.am | 12 ++++++------ cogl/cogl/meson.build | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cogl/cogl/Makefile.am b/cogl/cogl/Makefile.am index a814d561f..2654e45f8 100644 --- a/cogl/cogl/Makefile.am +++ b/cogl/cogl/Makefile.am @@ -62,8 +62,14 @@ cogl_1_public_h = \ cogl1-context.h \ cogl-bitmap.h \ cogl-color.h \ + cogl-framebuffer.h \ cogl-matrix.h \ cogl-offscreen.h \ + cogl-object.h \ + cogl-onscreen.h \ + cogl-pipeline.h \ + cogl-pipeline-state.h \ + cogl-pipeline-layer-state.h \ cogl-primitives.h \ cogl-texture.h \ cogl-types.h \ @@ -71,15 +77,11 @@ cogl_1_public_h = \ $(NULL) cogl_nonintrospected_h = \ - cogl-object.h \ cogl-renderer.h \ cogl-swap-chain.h \ cogl-onscreen-template.h \ cogl-display.h \ cogl-context.h \ - cogl-pipeline.h \ - cogl-pipeline-state.h \ - cogl-pipeline-layer-state.h \ cogl-snippet.h \ cogl-gles2.h \ cogl-gles2-types.h \ @@ -88,8 +90,6 @@ cogl_nonintrospected_h = \ cogl-indices.h \ cogl-attribute.h \ cogl-primitive.h \ - cogl-framebuffer.h \ - cogl-onscreen.h \ cogl-frame-info.h \ cogl-vector.h \ cogl-euler.h \ diff --git a/cogl/cogl/meson.build b/cogl/cogl/meson.build index 7641e5de3..ccd0aabe0 100644 --- a/cogl/cogl/meson.build +++ b/cogl/cogl/meson.build @@ -79,8 +79,14 @@ cogl_headers = [ 'cogl1-context.h', 'cogl-bitmap.h', 'cogl-color.h', + 'cogl-framebuffer.h', 'cogl-matrix.h', + 'cogl-object.h', 'cogl-offscreen.h', + 'cogl-onscreen.h', + 'cogl-pipeline.h', + 'cogl-pipeline-state.h', + 'cogl-pipeline-layer-state.h', 'cogl-primitives.h', 'cogl-texture.h', 'cogl-types.h', @@ -90,15 +96,11 @@ cogl_headers = [ cogl_nonintrospected_headers = [ 'cogl-deprecated.h', 'cogl-pango.h', - 'cogl-object.h', 'cogl-renderer.h', 'cogl-swap-chain.h', 'cogl-onscreen-template.h', 'cogl-display.h', 'cogl-context.h', - 'cogl-pipeline.h', - 'cogl-pipeline-state.h', - 'cogl-pipeline-layer-state.h', 'cogl-snippet.h', 'cogl-gles2.h', 'cogl-gles2-types.h', @@ -107,8 +109,6 @@ cogl_nonintrospected_headers = [ 'cogl-indices.h', 'cogl-attribute.h', 'cogl-primitive.h', - 'cogl-framebuffer.h', - 'cogl-onscreen.h', 'cogl-frame-info.h', 'cogl-vector.h', 'cogl-euler.h',