Mesa (master): r600/sfn: Fix typos.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Nov 20 00:47:58 UTC 2020


Module: Mesa
Branch: master
Commit: c1b675bdd5e9217eaa6258deaa5b30087cb0327c
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c1b675bdd5e9217eaa6258deaa5b30087cb0327c

Author: Vinson Lee <vlee at freedesktop.org>
Date:   Mon Nov 16 17:06:43 2020 -0800

r600/sfn: Fix typos.

Signed-off-by: Vinson Lee <vlee at freedesktop.org>
Reviewed-by: Gert Wollny <gert.wollny at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7649>

---

 src/gallium/drivers/r600/sfn/sfn_nir.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gallium/drivers/r600/sfn/sfn_nir.cpp b/src/gallium/drivers/r600/sfn/sfn_nir.cpp
index db7cf2f2b51..06200902a07 100644
--- a/src/gallium/drivers/r600/sfn/sfn_nir.cpp
+++ b/src/gallium/drivers/r600/sfn/sfn_nir.cpp
@@ -268,7 +268,7 @@ bool ShaderFromNir::process_declaration()
    // scan declarations
    nir_foreach_shader_in_variable(variable, sh) {
       if (!impl->process_inputs(variable)) {
-         fprintf(stderr, "R600: error parsing input varible %s\n", variable->name);
+         fprintf(stderr, "R600: error parsing input variable %s\n", variable->name);
          return false;
       }
    }
@@ -276,7 +276,7 @@ bool ShaderFromNir::process_declaration()
    // scan declarations
    nir_foreach_shader_out_variable(variable, sh) {
       if (!impl->process_outputs(variable)) {
-         fprintf(stderr, "R600: error parsing outputs varible %s\n", variable->name);
+         fprintf(stderr, "R600: error parsing outputs variable %s\n", variable->name);
          return false;
       }
    }
@@ -286,7 +286,7 @@ bool ShaderFromNir::process_declaration()
                                                  nir_var_mem_ubo |
                                                  nir_var_mem_ssbo) {
       if (!impl->process_uniforms(variable)) {
-         fprintf(stderr, "R600: error parsing outputs varible %s\n", variable->name);
+         fprintf(stderr, "R600: error parsing outputs variable %s\n", variable->name);
          return false;
       }
    }



More information about the mesa-commit mailing list