diff options
author | Matt Turner <[email protected]> | 2018-11-15 10:18:12 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2019-01-09 16:42:40 -0800 |
commit | b63a1f8e40b6705d6a1d806fbd38dcd197d4229b (patch) | |
tree | 0b4e18335166e5164a64e36b81bf984567f3b99e /src/compiler/Android.glsl.gen.mk | |
parent | 412472da5cb30b603e218b34893936cc70039ded (diff) |
glsl: Create file to contain software fp64 functions
The following patches will add implementations of various
double-precision operations to this file.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/compiler/Android.glsl.gen.mk')
-rw-r--r-- | src/compiler/Android.glsl.gen.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/Android.glsl.gen.mk b/src/compiler/Android.glsl.gen.mk index cdd786aa87c..e31eb6f101f 100644 --- a/src/compiler/Android.glsl.gen.mk +++ b/src/compiler/Android.glsl.gen.mk @@ -103,3 +103,7 @@ $(intermediates)/glsl/ir_expression_operation_constant.h: $(LOCAL_PATH)/glsl/ir_ $(intermediates)/glsl/ir_expression_operation_strings.h: $(LOCAL_PATH)/glsl/ir_expression_operation.py @mkdir -p $(dir $@) $(hide) $(MESA_PYTHON2) $< strings > $@ + +$(intermediates)/compiler/glsl/float64_glsl.h: $(LOCAL_PATH)/glsl/xxd.py + @mkdir -p $(dir $@) + $(hide) $(MESA_PYTHON2) $< $(MESA_TOP)/src/compiler/glsl/float64.glsl $@ -n float64_source > $@ |