diff options
author | Lionel Landwerlin <[email protected]> | 2017-01-25 12:28:50 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-01-25 17:21:15 +0000 |
commit | 4fd54d611f2853e7d3c83fb25734fc9423b5e079 (patch) | |
tree | e13d837b8dac172c3ff0f4b632c7add78fcff46d /src/compiler | |
parent | 25e21cb8d065799888e0c5db80b0e616ffddc560 (diff) |
spirv: fix typos
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/spirv/spirv_to_nir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/spirv/spirv_to_nir.c b/src/compiler/spirv/spirv_to_nir.c index aecda172717..968502c5fd8 100644 --- a/src/compiler/spirv/spirv_to_nir.c +++ b/src/compiler/spirv/spirv_to_nir.c @@ -609,7 +609,7 @@ type_decoration_cb(struct vtn_builder *b, case SpvDecorationOffset: case SpvDecorationXfbBuffer: case SpvDecorationXfbStride: - vtn_warn("Decoraiton only allowed for struct members: %s", + vtn_warn("Decoration only allowed for struct members: %s", spirv_decoration_to_string(dec->decoration)); break; @@ -625,7 +625,7 @@ type_decoration_cb(struct vtn_builder *b, case SpvDecorationLinkageAttributes: case SpvDecorationNoContraction: case SpvDecorationInputAttachmentIndex: - vtn_warn("Decoraiton not allowed on types: %s", + vtn_warn("Decoration not allowed on types: %s", spirv_decoration_to_string(dec->decoration)); break; @@ -635,7 +635,7 @@ type_decoration_cb(struct vtn_builder *b, case SpvDecorationFPRoundingMode: case SpvDecorationFPFastMathMode: case SpvDecorationAlignment: - vtn_warn("Decoraiton only allowed for CL-style kernels: %s", + vtn_warn("Decoration only allowed for CL-style kernels: %s", spirv_decoration_to_string(dec->decoration)); break; } |