diff options
author | Ian Romanick <[email protected]> | 2012-07-27 14:38:37 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-08-17 18:12:20 -0700 |
commit | 34472a0d8713c4eb300c9d1de0844c8b78bcf1ab (patch) | |
tree | 9873907c9a5cc5769ec943629ea2ece0581df95a /src/mesa/sources.mak | |
parent | d707e337f5f9a7b6ed465ade1b0b7c06606dde22 (diff) |
mesa/es: Don't generate ES1 type conversion wrappers
These are gradually going to get whittled away and eventually folded into the
source files with the native type functions.
v2: Add (speculative) SConscript changes. These may be broken.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/sources.mak')
-rw-r--r-- | src/mesa/sources.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak index 30e2219b026..ee260cbfd8f 100644 --- a/src/mesa/sources.mak +++ b/src/mesa/sources.mak @@ -6,7 +6,8 @@ # this is part of MAIN_FILES MAIN_ES_FILES = \ $(BUILDDIR)main/api_exec_es1.c \ - $(BUILDDIR)main/api_exec_es2.c + $(BUILDDIR)main/api_exec_es2.c \ + $(SRCDIR)main/es1_conversion.c MAIN_FILES = \ $(SRCDIR)main/api_arrayelt.c \ |