summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Berry <stereotype441@gmail.com>2013-09-29 08:10:33 -0700
committerPaul Berry <stereotype441@gmail.com>2013-10-10 14:26:58 -0700
commitfb41f2c531b1243e6eebfe7b02ac04b0fe66c24e (patch)
treef6d732b10852845cb15224083f045c44040a2719
parentd2e66b953e458b591f86207d8b21253e1a9fbf08 (diff)
glsl: Refactor code for creating gl_PerVertex interface block.
Currently, we create just a single gl_PerVertex interface block for geometry shader inputs. In later patches, we'll also need to create an interface block for geometry and vertex shader outputs. Moving the code into its own class will make reuse easier. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
-rw-r--r--src/glsl/builtin_variables.cpp72
1 files changed, 49 insertions, 23 deletions
diff --git a/src/glsl/builtin_variables.cpp b/src/glsl/builtin_variables.cpp
index 6f93d96c69..60ad03b6b4 100644
--- a/src/glsl/builtin_variables.cpp
+++ b/src/glsl/builtin_variables.cpp
@@ -293,6 +293,51 @@ static const struct gl_builtin_uniform_desc _mesa_builtin_uniform_desc[] = {
namespace {
+/**
+ * Data structure that accumulates fields for the gl_PerVertex interface
+ * block.
+ */
+class per_vertex_accumulator
+{
+public:
+ per_vertex_accumulator();
+ void add_field(int slot, const glsl_type *type, const char *name);
+ const glsl_type *construct_interface_instance() const;
+
+private:
+ glsl_struct_field fields[10];
+ unsigned num_fields;
+};
+
+
+per_vertex_accumulator::per_vertex_accumulator()
+ : num_fields(0)
+{
+}
+
+
+void
+per_vertex_accumulator::add_field(int slot, const glsl_type *type,
+ const char *name)
+{
+ assert(this->num_fields < ARRAY_SIZE(this->fields));
+ this->fields[this->num_fields].type = type;
+ this->fields[this->num_fields].name = name;
+ this->fields[this->num_fields].row_major = false;
+ this->fields[this->num_fields].location = slot;
+ this->num_fields++;
+}
+
+
+const glsl_type *
+per_vertex_accumulator::construct_interface_instance() const
+{
+ return glsl_type::get_interface_instance(this->fields, this->num_fields,
+ GLSL_INTERFACE_PACKING_STD140,
+ "gl_PerVertex");
+}
+
+
class builtin_variable_generator
{
public:
@@ -359,16 +404,7 @@ private:
const glsl_type * const mat3_t;
const glsl_type * const mat4_t;
- /**
- * Array where the contents of the gl_PerVertex interface instance are
- * accumulated.
- */
- glsl_struct_field per_vertex_fields[10];
-
- /**
- * Number of elements of per_vertex_fields which have been populated.
- */
- unsigned num_per_vertex_fields;
+ per_vertex_accumulator per_vertex;
};
@@ -379,8 +415,7 @@ builtin_variable_generator::builtin_variable_generator(
bool_t(glsl_type::bool_type), int_t(glsl_type::int_type),
float_t(glsl_type::float_type), vec2_t(glsl_type::vec2_type),
vec3_t(glsl_type::vec3_type), vec4_t(glsl_type::vec4_type),
- mat3_t(glsl_type::mat3_type), mat4_t(glsl_type::mat4_type),
- num_per_vertex_fields(0)
+ mat3_t(glsl_type::mat3_type), mat4_t(glsl_type::mat4_type)
{
}
@@ -769,13 +804,7 @@ builtin_variable_generator::add_varying(int slot, const glsl_type *type,
{
switch (state->target) {
case geometry_shader:
- assert(this->num_per_vertex_fields <
- ARRAY_SIZE(this->per_vertex_fields));
- this->per_vertex_fields[this->num_per_vertex_fields].type = type;
- this->per_vertex_fields[this->num_per_vertex_fields].name = name;
- this->per_vertex_fields[this->num_per_vertex_fields].row_major = false;
- this->per_vertex_fields[this->num_per_vertex_fields].location = slot;
- this->num_per_vertex_fields++;
+ this->per_vertex.add_field(slot, type, name);
/* FALLTHROUGH */
case vertex_shader:
add_output(slot, type, name);
@@ -825,10 +854,7 @@ builtin_variable_generator::generate_varyings()
if (state->target == geometry_shader) {
const glsl_type *per_vertex_type =
- glsl_type::get_interface_instance(this->per_vertex_fields,
- this->num_per_vertex_fields,
- GLSL_INTERFACE_PACKING_STD140,
- "gl_PerVertex");
+ this->per_vertex.construct_interface_instance();
ir_variable *var = add_variable("gl_in", array(per_vertex_type, 0),
ir_var_shader_in, -1);
var->init_interface_type(per_vertex_type);