diff options
author | Dave Airlie <[email protected]> | 2017-04-17 13:01:52 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-04-19 09:00:42 +1000 |
commit | 224cf2906a8f38ce47411afc93a223ac0e41795f (patch) | |
tree | 936419d83d631b298a7a1e0fc20069de313d4c36 /src/amd/Makefile.sources | |
parent | 4299849ec7a873edf46a3a366749282fdec020fe (diff) |
radv/ac: add initial pre-pass for shader info gathering
There is some radv specific info we need to gather from shaders
before we get into converting nir->llvm, so we can make
better decisions especially around user sgpr allocation.
This is just an initial placeholder to gather if sample positions
are required in the frag shader.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/Makefile.sources')
-rw-r--r-- | src/amd/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/amd/Makefile.sources b/src/amd/Makefile.sources index 816e7e4c993..38dd48b8d3c 100644 --- a/src/amd/Makefile.sources +++ b/src/amd/Makefile.sources @@ -45,6 +45,8 @@ AMD_COMPILER_FILES = \ common/ac_llvm_build.c \ common/ac_llvm_build.h \ common/ac_llvm_helper.cpp \ + common/ac_shader_info.c \ + common/ac_shader_info.h \ common/ac_llvm_util.c \ common/ac_llvm_util.h |