glsl2: Give the path within src/mesa/ for headers instead of relying on -I.

This commit is contained in:
Aras Pranckevicius 2010-07-29 12:40:49 +03:00 committed by Eric Anholt
parent b35703df10
commit 31747155ea
9 changed files with 9 additions and 9 deletions

View file

@ -24,7 +24,7 @@
#include <cstdio>
#include "ast.h"
extern "C" {
#include "symbol_table.h"
#include "program/symbol_table.h"
}
void

View file

@ -28,7 +28,7 @@
#include <talloc.h>
#include "hash_table.h"
#include "program/hash_table.h"
#define yyscan_t void*

View file

@ -28,7 +28,7 @@
#include "glsl_types.h"
#include "builtin_types.h"
extern "C" {
#include "hash_table.h"
#include "program/hash_table.h"
}
hash_table *glsl_type::array_types = NULL;

View file

@ -23,7 +23,7 @@
#include "ir.h"
#include "main/imports.h"
#include "symbol_table.h"
#include "program/symbol_table.h"
#include "glsl_parser_extras.h"
#include "ast.h"
#include "glsl_types.h"

View file

@ -25,7 +25,7 @@
#include "ir.h"
#include "glsl_types.h"
extern "C" {
#include "hash_table.h"
#include "program/hash_table.h"
}
/**

View file

@ -33,7 +33,7 @@
#include "ir_function_inlining.h"
#include "ir_expression_flattening.h"
#include "glsl_types.h"
#include "hash_table.h"
#include "program/hash_table.h"
class ir_function_inlining_visitor : public ir_hierarchical_visitor {
public:

View file

@ -36,7 +36,7 @@
#include <inttypes.h>
#include "ir.h"
#include "ir_hierarchical_visitor.h"
#include "hash_table.h"
#include "program/hash_table.h"
#include "glsl_types.h"
class ir_validate : public ir_hierarchical_visitor {

View file

@ -34,7 +34,7 @@ extern "C" {
#include "glsl_parser_extras.h"
#include "ir.h"
#include "program.h"
#include "hash_table.h"
#include "program/hash_table.h"
#include "linker.h"
static ir_function_signature *

View file

@ -78,7 +78,7 @@ extern "C" {
#include "glsl_symbol_table.h"
#include "ir.h"
#include "program.h"
#include "hash_table.h"
#include "program/hash_table.h"
#include "linker.h"
#include "ir_optimization.h"