summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChad Versace <chad.versace@linux.intel.com>2012-05-13 09:41:15 -0700
committerChad Versace <chad.versace@linux.intel.com>2012-05-17 11:41:09 -0700
commit224ee691385214f67f3ca866761fe3f31f6e0297 (patch)
tree389bbc43d87cae68e47d38276e00c92453d3ff98 /include
parent34a10089c452178c40064d52e24df41f5bf71e8b (diff)
include: Align enum values in waffle_enum.h
WAFFLE_CONTEXT_COMPATIBILITY_PROFILE is such a long name that its enum value was pushed out to the right. To prettify the source, right-align all ='s to column 64. Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/waffle/waffle_enum.h64
1 files changed, 32 insertions, 32 deletions
diff --git a/include/waffle/waffle_enum.h b/include/waffle/waffle_enum.h
index 76decad..864e6dc 100644
--- a/include/waffle/waffle_enum.h
+++ b/include/waffle/waffle_enum.h
@@ -42,32 +42,32 @@ waffle_enum_to_string(int32_t e);
/// All enums are placed in one list so that each has a distinct value. This
/// enables better error detection at API entry points.
enum waffle_enum {
- // -----------------------------------------
+ // ------------------------------------------------------------------
// Generic
- // -----------------------------------------
+ // ------------------------------------------------------------------
- WAFFLE_DONT_CARE = -1,
- WAFFLE_NONE = 0,
+ WAFFLE_DONT_CARE = -1,
+ WAFFLE_NONE = 0,
- // -----------------------------------------
+ // ------------------------------------------------------------------
// For waffle_init()
- // -----------------------------------------
+ // ------------------------------------------------------------------
- WAFFLE_PLATFORM = 0x0010,
- WAFFLE_PLATFORM_ANDROID = 0x0011,
- WAFFLE_PLATFORM_COCOA = 0x0012,
- WAFFLE_PLATFORM_GLX = 0x0013,
- WAFFLE_PLATFORM_WAYLAND = 0x0014,
- WAFFLE_PLATFORM_X11_EGL = 0x0015,
+ WAFFLE_PLATFORM = 0x0010,
+ WAFFLE_PLATFORM_ANDROID = 0x0011,
+ WAFFLE_PLATFORM_COCOA = 0x0012,
+ WAFFLE_PLATFORM_GLX = 0x0013,
+ WAFFLE_PLATFORM_WAYLAND = 0x0014,
+ WAFFLE_PLATFORM_X11_EGL = 0x0015,
- WAFFLE_OPENGL_API = 0x0100,
- WAFFLE_OPENGL = 0x0101,
- WAFFLE_OPENGL_ES1 = 0x0102,
- WAFFLE_OPENGL_ES2 = 0x0103,
+ WAFFLE_OPENGL_API = 0x0100,
+ WAFFLE_OPENGL = 0x0101,
+ WAFFLE_OPENGL_ES1 = 0x0102,
+ WAFFLE_OPENGL_ES2 = 0x0103,
- // -----------------------------------------
+ // ------------------------------------------------------------------
// For waffle_config_choose()
- // -----------------------------------------
+ // ------------------------------------------------------------------
WAFFLE_CONTEXT_API = 0x020a,
WAFFLE_CONTEXT_OPENGL = 0x020b,
@@ -81,26 +81,26 @@ enum waffle_enum {
WAFFLE_CONTEXT_CORE_PROFILE = 0x0211,
WAFFLE_CONTEXT_COMPATIBILITY_PROFILE = 0x0212,
- WAFFLE_RED_SIZE = 0x0201,
- WAFFLE_GREEN_SIZE = 0x0202,
- WAFFLE_BLUE_SIZE = 0x0203,
- WAFFLE_ALPHA_SIZE = 0x0204,
+ WAFFLE_RED_SIZE = 0x0201,
+ WAFFLE_GREEN_SIZE = 0x0202,
+ WAFFLE_BLUE_SIZE = 0x0203,
+ WAFFLE_ALPHA_SIZE = 0x0204,
- WAFFLE_DEPTH_SIZE = 0x0205,
- WAFFLE_STENCIL_SIZE = 0x0206,
+ WAFFLE_DEPTH_SIZE = 0x0205,
+ WAFFLE_STENCIL_SIZE = 0x0206,
- WAFFLE_SAMPLE_BUFFERS = 0x0207,
- WAFFLE_SAMPLES = 0x0208,
+ WAFFLE_SAMPLE_BUFFERS = 0x0207,
+ WAFFLE_SAMPLES = 0x0208,
- WAFFLE_DOUBLE_BUFFERED = 0x0209,
+ WAFFLE_DOUBLE_BUFFERED = 0x0209,
- // -----------------------------------------
+ // ------------------------------------------------------------------
// For waffle_dl_sym()
- // -----------------------------------------
+ // ------------------------------------------------------------------
- WAFFLE_DL_OPENGL = 0x0301,
- WAFFLE_DL_OPENGL_ES1 = 0x0302,
- WAFFLE_DL_OPENGL_ES2 = 0x0303,
+ WAFFLE_DL_OPENGL = 0x0301,
+ WAFFLE_DL_OPENGL_ES1 = 0x0302,
+ WAFFLE_DL_OPENGL_ES2 = 0x0303,
};
#ifdef __cplusplus