diff options
Diffstat (limited to 'src/glsl/linker.h')
-rw-r--r-- | src/glsl/linker.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/glsl/linker.h b/src/glsl/linker.h index e69098afdc3..0ad217f841c 100644 --- a/src/glsl/linker.h +++ b/src/glsl/linker.h @@ -90,8 +90,10 @@ protected: * * \param type Type of the field. * \param name Fully qualified name of the field. + * \param row_major For a matrix type, is it stored row-major. */ - virtual void visit_field(const glsl_type *type, const char *name) = 0; + virtual void visit_field(const glsl_type *type, const char *name, + bool row_major) = 0; private: /** |