https://github.com/shader-slang/slang
Revision c6fd4a5b35911f0f056f6e924a2dbc86e328cc46 authored by Yong He on 19 January 2021, 17:10:15 UTC, committed by GitHub on 19 January 2021, 17:10:15 UTC
1 parent 1296c7b
Raw File
Tip revision: c6fd4a5b35911f0f056f6e924a2dbc86e328cc46 authored by Yong He on 19 January 2021, 17:10:15 UTC
Make `ShaderCursor` no longer depend on core. (#1661)
Tip revision: c6fd4a5
.gitignore
*.exe
*.pdb
.vs
*.VC.opendb
*.VC.db
*.vcxproj.user
*.sdf
*.ilk
*.obj
*.slang-module
*.zip
.clang-format
bin/
intermediate/
build.*/

# 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
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
back to top