From e7b923289af89600e83973ac69b699e440b039b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Mon, 12 Oct 2020 19:53:43 +0200 Subject: [PATCH] cogl/framebuffer: Fix enum declaration coding style https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1496 --- cogl/cogl/cogl-framebuffer-private.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cogl/cogl/cogl-framebuffer-private.h b/cogl/cogl/cogl-framebuffer-private.h index 38e58fd69..42a0f5e22 100644 --- a/cogl/cogl/cogl-framebuffer-private.h +++ b/cogl/cogl/cogl-framebuffer-private.h @@ -41,7 +41,8 @@ #include "cogl-gl-header.h" #include "cogl-clip-stack.h" -typedef enum _CoglFramebufferType { +typedef enum _CoglFramebufferType +{ COGL_FRAMEBUFFER_TYPE_ONSCREEN, COGL_FRAMEBUFFER_TYPE_OFFSCREEN } CoglFramebufferType;