diff options
Diffstat (limited to 'src/compiler/glsl/link_varyings.h')
-rw-r--r-- | src/compiler/glsl/link_varyings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/glsl/link_varyings.h b/src/compiler/glsl/link_varyings.h index 0ad4f740502..2126a5c6d98 100644 --- a/src/compiler/glsl/link_varyings.h +++ b/src/compiler/glsl/link_varyings.h @@ -151,7 +151,7 @@ public: return this->size; else return this->vector_elements * this->matrix_columns * this->size * - (this->is_double() ? 2 : 1); + (this->is_64bit() ? 2 : 1); } unsigned get_location() const { @@ -160,7 +160,7 @@ public: private: - bool is_double() const + bool is_64bit() const { switch (this->type) { case GL_DOUBLE: |