Revision 6ab0baf910dea838dca2d29557c3361297180a34 authored by jsmall-nvidia on 22 August 2022, 21:39:56 UTC, committed by GitHub on 22 August 2022, 21:39:56 UTC
* #include an absolute path didn't work - because paths were taken to always be relative.

* WIP replacing DownstreamCompileResult.

* First attempt at replacing DownstreamCompileResult with IArtifact and associated types.

* Small renaming around CharSlice.

* ICastable -> ISlangCastable
Added IClonable
Fix issue with cloning in ArtifactDiagnostics.

* Only add the blob if one is defined in DXC.

* Guard adding blob representation.

* Make cloneInterface available across code base.
Set enums backing type for ArtifactDiagnostic.

* Added ::create for ArtifactDiagnostics.

* Use SemanticVersion for DownstreamCompilerDesc.
Set sizes for enum types.

* Depreciate old incompatible CompileOptions.
Change SemanticVersion use 32 bits for the patch.

* Split out CastableUtil.

* Change IDownstreamCompiler to use canConvert and convert to use artifact types.

* Fix typos.

* Fix typo bug.
Allow trafficing in PTX assembly/binaries

* struct DownstreamCompilerBaseUtil -> struct DownstreamCompilerUtilBase

Co-authored-by: Yong He <yonghe@outlook.com>
1 parent 4bd3e6e
Raw File
.gitignore
*.exe
*.pdb
.vs
.vscode
*.VC.opendb
*.VC.db
*.vcxproj.user
*.sdf
*.ilk
*.obj
*.slang-module
*.zip
*.ini
.clang-format

bin/
intermediate/
build.*/
Makefile

# Files generated by test runner.
#
# Note: in some cases a `.expected` file needs to be checked in, but
# trying to exhaustively enumerate those cases is hard with the
# way the tests are currently sorted.

*.actual
*.expected
*.expected.png
*.actual.png
*.actual.txt
*.slang-repro

tests/**/*.exp
tests/**/*.lib
tests/**/*.dll
tests/**/*.cpp
tests/**/*.slang-lib
tests/**/*.slang-module

# Files generated by other shader compilers

*.spv

# Intermediate source files generated during build process
/source/slang/slang-generated-*.h
/source/slang/hlsl.meta.slang.h
/source/slang/core.meta.slang.h
/source/slang/diff.meta.slang.h
prelude/*.h.cpp
/source/slang/cpp.hint
/source/slang/slang-value-generated.h
/source/slang/slang-value-generated-macro.h
/source/slang/slang-ref-object-generated.h
/source/slang/slang-ref-object-generated-macro.h
/source/slang/slang-ast-generated.h
/source/slang/slang-ast-generated-macro.h
/docs/_site
/docs/Gemfile.lock
/docs/Gemfile
/source/slang/slang-stdlib-generated.h

/examples/heterogeneous-hello-world/shader.cpp
/multiple-definitions.hlsl
/external/slang-llvm/

build/**/*.tlog
build/**/*.lastbuildstate
build/**/*.recipe
build/**/*.log
*.dll
*.dxil
back to top