Skip to content

Commit ba0bdac

Browse files
committed
Update from TressFX Sushi/4.0 to Cauldron/4.1
1 parent 9a9a100 commit ba0bdac

File tree

614 files changed

+63745
-128801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

614 files changed

+63745
-128801
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
*.ini eol=crlf
2727
*.shl eol=crlf
2828
*.sufx eol=crlf
29+
*.jpg binary
2930
*.pdf binary
3031
*.pps binary
3132
*.ppsx binary
@@ -45,6 +46,7 @@
4546
*.suf2 binary
4647
*.sul2 binary
4748
*.suo2 binary
49+
*.bin binary
4850

4951
# Some model formats might be ASCII, but treating them as such
5052
# can slow down GitHub Desktop if the model file is large. Just

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "libs/cauldron"]
2+
path = libs/cauldron
3+
url = [email protected]:GPUOpen-LibrariesAndSDKs/Cauldron.git

CMakeLists.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
cmake_minimum_required(VERSION 3.4)
2+
set(CMAKE_GENERATOR_PLATFORM x64)
3+
4+
project (TressFX_${GFX_API})
5+
6+
# output exe to bin directory
7+
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_HOME_DIRECTORY}/bin)
8+
foreach( OUTPUTCONFIG ${CMAKE_CONFIGURATION_TYPES} )
9+
string( TOUPPER ${OUTPUTCONFIG} OUTPUTCONFIG )
10+
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_HOME_DIRECTORY}/bin )
11+
endforeach( OUTPUTCONFIG CMAKE_CONFIGURATION_TYPES )
12+
13+
# reference libs used by both backends
14+
add_subdirectory(libs/cauldron)
15+
16+
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT ${PROJECT_NAME})
17+
include_directories(src src/TressFX)
18+
add_subdirectory(src)

CONTRIBUTING.md

Lines changed: 0 additions & 143 deletions
This file was deleted.

0 commit comments

Comments
 (0)