From: Timothy Arceri Date: Fri, 22 Jan 2016 05:22:40 +0000 (+1100) Subject: glsl: add xfb qualifiers to has_layout helper X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4a873ef049bce855e8b5f254d428956de8ce45f8;p=mesa.git glsl: add xfb qualifiers to has_layout helper Reviewed-by: Dave Airlie --- diff --git a/src/compiler/glsl/ast_type.cpp b/src/compiler/glsl/ast_type.cpp index 9f0f578be86..c3d38cbbf8a 100644 --- a/src/compiler/glsl/ast_type.cpp +++ b/src/compiler/glsl/ast_type.cpp @@ -79,7 +79,10 @@ ast_type_qualifier::has_layout() const || this->flags.q.explicit_index || this->flags.q.explicit_binding || this->flags.q.explicit_offset - || this->flags.q.explicit_stream; + || this->flags.q.explicit_stream + || this->flags.q.explicit_xfb_buffer + || this->flags.q.explicit_xfb_offset + || this->flags.q.explicit_xfb_stride; } bool