diff options
author | Brian Paul <[email protected]> | 2017-12-15 10:18:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-12-20 11:23:16 -0700 |
commit | d86c9836d5b55ce8efedeb5da0802def1a705957 (patch) | |
tree | 07b78bdb3598f115cbe9eb0303ea738609e63e71 /src/compiler/glsl | |
parent | a42e96f5223bca4ec90d0f561e5c73892cc44f7f (diff) |
glsl: trivial comment fixes in lower_packed_varyings.cpp
Reviewed by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/compiler/glsl')
-rw-r--r-- | src/compiler/glsl/lower_packed_varyings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/lower_packed_varyings.cpp b/src/compiler/glsl/lower_packed_varyings.cpp index 1aec7ee7dc2..c622f5ee7b7 100644 --- a/src/compiler/glsl/lower_packed_varyings.cpp +++ b/src/compiler/glsl/lower_packed_varyings.cpp @@ -766,7 +766,7 @@ lower_packed_varyings_visitor::needs_lowering(ir_variable *var) /* Override disable_varying_packing if the var is only used by transform * feedback. Also override it if transform feedback is enabled and the * variable is an array, struct or matrix as the elements of these types - * will always has the same interpolation and therefore asre safe to pack. + * will always have the same interpolation and therefore are safe to pack. */ const glsl_type *type = var->type; if (disable_varying_packing && !var->data.is_xfb_only && |