Browse Source

libobs/graphics: Separate some sections via comments

Lain 8 months ago
parent
commit
40f0543488
1 changed files with 8 additions and 0 deletions
  1. 8 0
      libobs/graphics/graphics-internal.h

+ 8 - 0
libobs/graphics/graphics-internal.h

@@ -23,6 +23,10 @@
 #include "matrix3.h"
 #include "matrix4.h"
 
+/* ========================================================================= *
+ * Exports                                                                   *
+ * ========================================================================= */
+
 struct gs_exports {
 	const char *(*device_get_name)(void);
 	const char *(*gpu_get_driver_version)(void);
@@ -280,6 +284,10 @@ struct gs_exports {
 #endif
 };
 
+/* ========================================================================= *
+ * Graphics Subsystem Data                                                   *
+ * ========================================================================= */
+
 struct blend_state {
 	bool enabled;
 	enum gs_blend_type src_c;