vbo: move VBO-private types, prototypes, etc. into new vbo_private.h header
authorBrian Paul <brianp@vmware.com>
Thu, 18 Jan 2018 21:22:29 +0000 (14:22 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 24 Jan 2018 17:12:49 +0000 (10:12 -0700)
Things which should not be used outside the VBO module.
More public/private clean-ups coming.

Reviewed-by: Roland Scheidegger <sroland@vmware.com>
12 files changed:
src/mesa/vbo/vbo.h
src/mesa/vbo/vbo_context.c
src/mesa/vbo/vbo_context.h
src/mesa/vbo/vbo_exec.c
src/mesa/vbo/vbo_exec_api.c
src/mesa/vbo/vbo_exec_array.c
src/mesa/vbo/vbo_exec_draw.c
src/mesa/vbo/vbo_primitive_restart.c
src/mesa/vbo/vbo_private.h [new file with mode: 0644]
src/mesa/vbo/vbo_save.c
src/mesa/vbo/vbo_save_api.c
src/mesa/vbo/vbo_save_draw.c

index 7fc7c55085728b1ef06db0c8d3b96c8edc7feeab..146d4cd3116dc815d1d90382069cf8555a98f36b 100644 (file)
@@ -180,15 +180,6 @@ void vbo_set_draw_func(struct gl_context *ctx, vbo_draw_func func);
 void vbo_set_indirect_draw_func(struct gl_context *ctx,
                                 vbo_indirect_draw_func func);
 
-void
-vbo_try_prim_conversion(struct _mesa_prim *p);
-
-bool
-vbo_can_merge_prims(const struct _mesa_prim *p0, const struct _mesa_prim *p1);
-
-void
-vbo_merge_prims(struct _mesa_prim *p0, const struct _mesa_prim *p1);
-
 void
 vbo_sw_primitive_restart(struct gl_context *ctx,
                          const struct _mesa_prim *prim,
index 3d3f838c4f5c7fb7ccea20b0e03e691f15b5795c..34c7d59bb1abdb159a70bf656f1b74cde72b8d7d 100644 (file)
@@ -31,6 +31,7 @@
 #include "main/vtxfmt.h"
 #include "vbo.h"
 #include "vbo_context.h"
+#include "vbo_private.h"
 
 
 static GLuint
@@ -191,6 +192,24 @@ _vbo_install_exec_vtxfmt(struct gl_context *ctx)
 }
 
 
+void
+vbo_exec_invalidate_state(struct gl_context *ctx)
+{
+   struct vbo_context *vbo = vbo_context(ctx);
+   struct vbo_exec_context *exec = &vbo->exec;
+
+   if (ctx->NewState & (_NEW_PROGRAM | _NEW_ARRAY)) {
+      if (!exec->validating)
+         exec->array.recalculate_inputs = GL_TRUE;
+
+      _ae_invalidate_state(ctx);
+   }
+
+   if (ctx->NewState & _NEW_EVAL)
+      exec->eval.recalculate_maps = GL_TRUE;
+}
+
+
 GLboolean
 _vbo_CreateContext(struct gl_context *ctx)
 {
index 2eac0198b80afef05bae249b6a579f8f4e97df2d..a723a6aba3a8df8ab69f7e79755c1690bd3f0236 100644 (file)
@@ -86,168 +86,14 @@ struct vbo_context {
 };
 
 
-static inline struct vbo_context *vbo_context(struct gl_context *ctx) 
-{
-   return ctx->vbo_context;
-}
-
-
-static inline void
-vbo_exec_invalidate_state(struct gl_context *ctx)
-{
-   struct vbo_context *vbo = vbo_context(ctx);
-   struct vbo_exec_context *exec = &vbo->exec;
-
-   if (ctx->NewState & (_NEW_PROGRAM | _NEW_ARRAY)) {
-      if (!exec->validating)
-         exec->array.recalculate_inputs = GL_TRUE;
-
-      _ae_invalidate_state(ctx);
-   }
-
-   if (ctx->NewState & _NEW_EVAL)
-      exec->eval.recalculate_maps = GL_TRUE;
-}
+void
+vbo_exec_invalidate_state(struct gl_context *ctx);
 
 
 void
 _vbo_install_exec_vtxfmt(struct gl_context *ctx);
 
 
-/**
- * Return VP_x token to indicate whether we're running fixed-function
- * vertex transformation, an NV vertex program or ARB vertex program/shader.
- */
-static inline enum vp_mode
-get_program_mode( struct gl_context *ctx )
-{
-   if (!ctx->VertexProgram._Current)
-      return VP_NONE;
-   else if (ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram)
-      return VP_NONE;
-   else
-      return VP_ARB;
-}
-
-
-/**
- * This is called by glBegin, glDrawArrays and glDrawElements (and
- * variations of those calls).  When we transition from immediate mode
- * drawing to array drawing we need to invalidate the array state.
- *
- * glBegin/End builds vertex arrays.  Those arrays may look identical
- * to glDrawArrays arrays except that the position of the elements may
- * be different.  For example, arrays of (position3v, normal3f) vs. arrays
- * of (normal3f, position3f).  So we need to make sure we notify drivers
- * that arrays may be changing.
- */
-static inline void
-vbo_draw_method(struct vbo_context *vbo, gl_draw_method method)
-{
-   struct gl_context *ctx = vbo->exec.ctx;
-
-   if (ctx->Array.DrawMethod != method) {
-      switch (method) {
-      case DRAW_ARRAYS:
-         ctx->Array._DrawArrays = vbo->exec.array.inputs;
-         break;
-      case DRAW_BEGIN_END:
-         ctx->Array._DrawArrays = vbo->exec.vtx.inputs;
-         break;
-      case DRAW_DISPLAY_LIST:
-         ctx->Array._DrawArrays = vbo->save.inputs;
-         break;
-      default:
-         unreachable("Bad VBO drawing method");
-      }
-
-      ctx->NewDriverState |= ctx->DriverFlags.NewArray;
-      ctx->Array.DrawMethod = method;
-   }
-}
-
-/**
- * Return if format is integer. The immediate mode commands only emit floats
- * for non-integer types, thus everything else is integer.
- */
-static inline GLboolean
-vbo_attrtype_to_integer_flag(GLenum format)
-{
-   switch (format) {
-   case GL_FLOAT:
-   case GL_DOUBLE:
-      return GL_FALSE;
-   case GL_INT:
-   case GL_UNSIGNED_INT:
-   case GL_UNSIGNED_INT64_ARB:
-      return GL_TRUE;
-   default:
-      unreachable("Bad vertex attribute type");
-      return GL_FALSE;
-   }
-}
-
-static inline GLboolean
-vbo_attrtype_to_double_flag(GLenum format)
-{
-   switch (format) {
-   case GL_FLOAT:
-   case GL_INT:
-   case GL_UNSIGNED_INT:
-   case GL_UNSIGNED_INT64_ARB:
-      return GL_FALSE;
-   case GL_DOUBLE:
-      return GL_TRUE;
-   default:
-      unreachable("Bad vertex attribute type");
-      return GL_FALSE;
-   }
-}
-
-/**
- * Return default component values for the given format.
- * The return type is an array of fi_types, because that's how we declare
- * the vertex storage : floats , integers or unsigned integers.
- */
-static inline const fi_type *
-vbo_get_default_vals_as_union(GLenum format)
-{
-   static const GLfloat default_float[4] = { 0, 0, 0, 1 };
-   static const GLint default_int[4] = { 0, 0, 0, 1 };
-
-   switch (format) {
-   case GL_FLOAT:
-      return (fi_type *)default_float;
-   case GL_INT:
-   case GL_UNSIGNED_INT:
-      return (fi_type *)default_int;
-   default:
-      unreachable("Bad vertex format");
-      return NULL;
-   }
-}
-
-
-/**
- * Compute the max number of vertices which can be stored in
- * a vertex buffer, given the current vertex size, and the amount
- * of space already used.
- */
-static inline unsigned
-vbo_compute_max_verts(const struct vbo_exec_context *exec)
-{
-   unsigned n = (VBO_VERT_BUFFER_SIZE - exec->vtx.buffer_used) /
-      (exec->vtx.vertex_size * sizeof(GLfloat));
-   if (n == 0)
-      return 0;
-   /* Subtract one so we're always sure to have room for an extra
-    * vertex for GL_LINE_LOOP -> GL_LINE_STRIP conversion.
-    */
-   n--;
-   return n;
-}
-
-
 #ifdef __cplusplus
 } // extern "C"
 #endif
index 4320738bd6d3769bdaa95a22395712f7274a6158..5718c9d6c26ba47c46b06395dd405109527c369c 100644 (file)
@@ -30,6 +30,7 @@
 #include "main/mtypes.h"
 #include "main/vtxfmt.h"
 #include "vbo_context.h"
+#include "vbo_private.h"
 
 
 
index 6f1c550cb6f7f6a17a00e5bfce9bbcac6f8e852f..3d972b2d3e1f8c873832851dbe3f239b9e44d985 100644 (file)
@@ -46,6 +46,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 #include "vbo_context.h"
 #include "vbo_noop.h"
+#include "vbo_private.h"
 
 
 /** ID/name for immediate-mode VBO */
index 507821ee52c6444fba3acdf7b86511a02ecc15c9..e79ed4660f8b92cc2bc0c2ec58a4f1c499a1219a 100644 (file)
@@ -40,6 +40,7 @@
 #include "main/transformfeedback.h"
 
 #include "vbo_context.h"
+#include "vbo_private.h"
 
 
 /**
index 080d50c10e9659d13a05f539325f4ff7824132aa..7418a2a2a0ae9796c3af3bdb2351b0331dfbae30 100644 (file)
@@ -36,6 +36,7 @@
 
 #include "vbo_context.h"
 #include "vbo_noop.h"
+#include "vbo_private.h"
 
 
 static void
index 8f04def377c26a5f652b367a18f56dc113ba883b..886362c32fe16251ecab492513890d74be252b11 100644 (file)
@@ -35,6 +35,8 @@
 
 #include "vbo.h"
 #include "vbo_context.h"
+#include "vbo_private.h"
+
 
 #define UPDATE_MIN2(a, b) (a) = MIN2((a), (b))
 #define UPDATE_MAX2(a, b) (a) = MAX2((a), (b))
diff --git a/src/mesa/vbo/vbo_private.h b/src/mesa/vbo/vbo_private.h
new file mode 100644 (file)
index 0000000..e4c0cbc
--- /dev/null
@@ -0,0 +1,197 @@
+/*
+ * mesa 3-D graphics library
+ *
+ * Copyright (C) 1999-2006  Brian Paul   All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+
+/**
+ * Types, functions, etc which are private to the VBO module.
+ */
+
+
+#ifndef VBO_PRIVATE_H
+#define VBO_PRIVATE_H
+
+
+#include "vbo/vbo_context.h"
+#include "main/mtypes.h"
+
+
+struct _glapi_table;
+struct _mesa_prim;
+
+
+
+static inline struct vbo_context *
+vbo_context(struct gl_context *ctx)
+{
+   return ctx->vbo_context;
+}
+
+
+/**
+ * Return VP_x token to indicate whether we're running fixed-function
+ * vertex transformation, an NV vertex program or ARB vertex program/shader.
+ */
+static inline enum vp_mode
+get_program_mode( struct gl_context *ctx )
+{
+   if (!ctx->VertexProgram._Current)
+      return VP_NONE;
+   else if (ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram)
+      return VP_NONE;
+   else
+      return VP_ARB;
+}
+
+
+/**
+ * This is called by glBegin, glDrawArrays and glDrawElements (and
+ * variations of those calls).  When we transition from immediate mode
+ * drawing to array drawing we need to invalidate the array state.
+ *
+ * glBegin/End builds vertex arrays.  Those arrays may look identical
+ * to glDrawArrays arrays except that the position of the elements may
+ * be different.  For example, arrays of (position3v, normal3f) vs. arrays
+ * of (normal3f, position3f).  So we need to make sure we notify drivers
+ * that arrays may be changing.
+ */
+static inline void
+vbo_draw_method(struct vbo_context *vbo, gl_draw_method method)
+{
+   struct gl_context *ctx = vbo->exec.ctx;
+
+   if (ctx->Array.DrawMethod != method) {
+      switch (method) {
+      case DRAW_ARRAYS:
+         ctx->Array._DrawArrays = vbo->exec.array.inputs;
+         break;
+      case DRAW_BEGIN_END:
+         ctx->Array._DrawArrays = vbo->exec.vtx.inputs;
+         break;
+      case DRAW_DISPLAY_LIST:
+         ctx->Array._DrawArrays = vbo->save.inputs;
+         break;
+      default:
+         unreachable("Bad VBO drawing method");
+      }
+
+      ctx->NewDriverState |= ctx->DriverFlags.NewArray;
+      ctx->Array.DrawMethod = method;
+   }
+}
+
+
+/**
+ * Return if format is integer. The immediate mode commands only emit floats
+ * for non-integer types, thus everything else is integer.
+ */
+static inline GLboolean
+vbo_attrtype_to_integer_flag(GLenum format)
+{
+   switch (format) {
+   case GL_FLOAT:
+   case GL_DOUBLE:
+      return GL_FALSE;
+   case GL_INT:
+   case GL_UNSIGNED_INT:
+   case GL_UNSIGNED_INT64_ARB:
+      return GL_TRUE;
+   default:
+      unreachable("Bad vertex attribute type");
+      return GL_FALSE;
+   }
+}
+
+static inline GLboolean
+vbo_attrtype_to_double_flag(GLenum format)
+{
+   switch (format) {
+   case GL_FLOAT:
+   case GL_INT:
+   case GL_UNSIGNED_INT:
+   case GL_UNSIGNED_INT64_ARB:
+      return GL_FALSE;
+   case GL_DOUBLE:
+      return GL_TRUE;
+   default:
+      unreachable("Bad vertex attribute type");
+      return GL_FALSE;
+   }
+}
+
+
+/**
+ * Return default component values for the given format.
+ * The return type is an array of fi_types, because that's how we declare
+ * the vertex storage : floats , integers or unsigned integers.
+ */
+static inline const fi_type *
+vbo_get_default_vals_as_union(GLenum format)
+{
+   static const GLfloat default_float[4] = { 0, 0, 0, 1 };
+   static const GLint default_int[4] = { 0, 0, 0, 1 };
+
+   switch (format) {
+   case GL_FLOAT:
+      return (fi_type *)default_float;
+   case GL_INT:
+   case GL_UNSIGNED_INT:
+      return (fi_type *)default_int;
+   default:
+      unreachable("Bad vertex format");
+      return NULL;
+   }
+}
+
+
+/**
+ * Compute the max number of vertices which can be stored in
+ * a vertex buffer, given the current vertex size, and the amount
+ * of space already used.
+ */
+static inline unsigned
+vbo_compute_max_verts(const struct vbo_exec_context *exec)
+{
+   unsigned n = (VBO_VERT_BUFFER_SIZE - exec->vtx.buffer_used) /
+      (exec->vtx.vertex_size * sizeof(GLfloat));
+   if (n == 0)
+      return 0;
+   /* Subtract one so we're always sure to have room for an extra
+    * vertex for GL_LINE_LOOP -> GL_LINE_STRIP conversion.
+    */
+   n--;
+   return n;
+}
+
+
+void
+vbo_try_prim_conversion(struct _mesa_prim *p);
+
+bool
+vbo_can_merge_prims(const struct _mesa_prim *p0, const struct _mesa_prim *p1);
+
+void
+vbo_merge_prims(struct _mesa_prim *p0, const struct _mesa_prim *p1);
+
+
+#endif /* VBO_PRIVATE_H */
index 9e83b59623ca1a3576f835498894e8172fddb52c..a91dc2ff4b33e05c2bbdafc36001340e729491f2 100644 (file)
@@ -31,6 +31,7 @@
 #include "main/imports.h"
 
 #include "vbo_context.h"
+#include "vbo_private.h"
 
 
 /**
index a411308ea243f17654417f09acd495ac7845e3c6..d260b1f6e6a1157ecc3b4bd7007f31606d1f9417 100644 (file)
@@ -83,6 +83,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 #include "vbo_context.h"
 #include "vbo_noop.h"
+#include "vbo_private.h"
 
 
 #ifdef ERROR
index a63e0674d898047510b7b85750651ef66564efc0..9bac2671f317ab40622baa9998132c070f78daa0 100644 (file)
@@ -37,6 +37,7 @@
 #include "util/bitscan.h"
 
 #include "vbo_context.h"
+#include "vbo_private.h"
 
 
 /**