diff options
author | Brian Paul <brianp@vmware.com> | 2015-02-24 17:47:00 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2015-02-26 08:38:38 -0700 |
commit | 538e13d4a13419add6bbcb5b14a69762ffad0818 (patch) | |
tree | b34fc7a8b1ebeb92f803c81f22688e002c57432a | |
parent | 609cb60d4beb48db4f5641253d331947f7eae2da (diff) | |
download | external_mesa3d-538e13d4a13419add6bbcb5b14a69762ffad0818.zip external_mesa3d-538e13d4a13419add6bbcb5b14a69762ffad0818.tar.gz external_mesa3d-538e13d4a13419add6bbcb5b14a69762ffad0818.tar.bz2 |
r300g: remove dependency on compiler.h
It only needs typical stdio.h and stdlib.h functions.
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
5 files changed, 5 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/compiler/radeon_compiler.h b/src/gallium/drivers/r300/compiler/radeon_compiler.h index e2710d8..9dc6855 100644 --- a/src/gallium/drivers/r300/compiler/radeon_compiler.h +++ b/src/gallium/drivers/r300/compiler/radeon_compiler.h @@ -23,8 +23,6 @@ #ifndef RADEON_COMPILER_H #define RADEON_COMPILER_H -#include "main/compiler.h" - #include "memory_pool.h" #include "radeon_code.h" #include "radeon_program.h" diff --git a/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c b/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c index e7b69c8..d42b3e7 100644 --- a/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c +++ b/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c @@ -29,8 +29,9 @@ * \file */ +#include <stdio.h> +#include "c99_math.h" #include "radeon_emulate_loops.h" - #include "radeon_compiler.h" #include "radeon_compiler_util.h" #include "radeon_dataflow.h" diff --git a/src/gallium/drivers/r300/compiler/radeon_remove_constants.c b/src/gallium/drivers/r300/compiler/radeon_remove_constants.c index 7d76585..d17f502 100644 --- a/src/gallium/drivers/r300/compiler/radeon_remove_constants.c +++ b/src/gallium/drivers/r300/compiler/radeon_remove_constants.c @@ -25,6 +25,7 @@ * */ +#include <stdlib.h> #include "radeon_remove_constants.h" #include "radeon_dataflow.h" diff --git a/src/gallium/drivers/r300/compiler/radeon_variable.c b/src/gallium/drivers/r300/compiler/radeon_variable.c index c7ac486f..ba89523 100644 --- a/src/gallium/drivers/r300/compiler/radeon_variable.c +++ b/src/gallium/drivers/r300/compiler/radeon_variable.c @@ -25,6 +25,7 @@ * */ +#include <stdio.h> #include "radeon_variable.h" #include "memory_pool.h" diff --git a/src/gallium/drivers/r300/r300_tgsi_to_rc.c b/src/gallium/drivers/r300/r300_tgsi_to_rc.c index 4d94941..69afb4c 100644 --- a/src/gallium/drivers/r300/r300_tgsi_to_rc.c +++ b/src/gallium/drivers/r300/r300_tgsi_to_rc.c @@ -20,6 +20,7 @@ * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <stdio.h> #include "r300_tgsi_to_rc.h" #include "compiler/radeon_compiler.h" |