diff options
author | Eric Anholt <eric@anholt.net> | 2010-06-25 12:37:21 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-06-25 12:37:21 -0700 |
commit | 364fcd8ee1af39e215338fba59306a14dd81c2b2 (patch) | |
tree | f8cac6a8a903645ae72fc506b0c1ee00a2778945 /src/mesa/Makefile | |
parent | 7f2bf62d25b2fdc059163ee046cf2fe007e5041e (diff) |
glsl2: Start integrating ir_to_mesa.cpp into shader_api.h
The compiler is now called by the driver, and generates program
instructions. Parameter lists are still not set up, so the driver
chokes on it shortly thereafter.
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 84ced27953..e2eeb16c9a 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -36,6 +36,8 @@ MESA_INCLUDES := $(INCLUDE_DIRS) ES1_INCLUDES := -I$(TOP)/src/mapi/es1api $(INCLUDE_DIRS) ES2_INCLUDES := -I$(TOP)/src/mapi/es2api $(INCLUDE_DIRS) MESA_INCLUDES := -I$(TOP)/src/glsl $(MESA_INCLUDES) +# For symbol_table.h in glsl compiler headers. +MESA_INCLUDES := -I$(TOP)/src/mesa/shader $(MESA_INCLUDES) define mesa-cc-c @mkdir -p $(dir $@) |