diff options
author | Dave Airlie <[email protected]> | 2016-06-09 07:02:36 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-06-09 07:37:43 +1000 |
commit | 2df46519e4aeb330df30890c2702d96891c18964 (patch) | |
tree | 349e0ca6883251c708f5b1d12bf1b9400b1384e0 /src/compiler/glsl/link_varyings.cpp | |
parent | 35616a9e0ef0511ebb77e7076c00f2eeb248933a (diff) |
glsl/link_varyings: switch to 64bit check instead of double.
This is prep work for int64 support.
Reviewed-by: Ilia Mirkin <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/compiler/glsl/link_varyings.cpp')
-rw-r--r-- | src/compiler/glsl/link_varyings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/link_varyings.cpp b/src/compiler/glsl/link_varyings.cpp index 99fb3fcdc00..67534a6ca82 100644 --- a/src/compiler/glsl/link_varyings.cpp +++ b/src/compiler/glsl/link_varyings.cpp @@ -886,7 +886,7 @@ tfeedback_decl::store(struct gl_context *ctx, struct gl_shader_program *prog, } if (explicit_stride && explicit_stride[buffer]) { - if (this->is_double() && info->Buffers[buffer].Stride % 2) { + if (this->is_64bit() && info->Buffers[buffer].Stride % 2) { linker_error(prog, "invalid qualifier xfb_stride=%d must be a " "multiple of 8 as its applied to a type that is or " "contains a double.", |