diff options
author | Andreas Baierl <[email protected]> | 2019-10-09 09:11:28 +0200 |
---|---|---|
committer | Vasily Khoruzhick <[email protected]> | 2019-10-16 15:13:13 +0000 |
commit | f906f5f05398de3142713cdea0828def2032a749 (patch) | |
tree | 4c8d2830b70f0f52516a12e391ceb5c9e24f7b7e | |
parent | 88f1c0a3609d44bc834999f4cf059b942a9a0ea3 (diff) |
lima: Fix compiler warning in standalone compiler
'struct lima_context' has to be declared before usage in lima_program.h
Signed-off-by: Andreas Baierl <[email protected]>
Reviewed-by: Vasily Khoruzhick <[email protected]>
-rw-r--r-- | src/gallium/drivers/lima/standalone/lima_compiler_cmdline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/lima/standalone/lima_compiler_cmdline.c b/src/gallium/drivers/lima/standalone/lima_compiler_cmdline.c index aa41517eb8c..c040d6a0657 100644 --- a/src/gallium/drivers/lima/standalone/lima_compiler_cmdline.c +++ b/src/gallium/drivers/lima/standalone/lima_compiler_cmdline.c @@ -33,8 +33,8 @@ #include "compiler/glsl/gl_nir.h" #include "compiler/nir_types.h" -#include "lima_program.h" #include "lima_context.h" +#include "lima_program.h" #include "ir/lima_ir.h" #include "standalone/glsl.h" |