Skip to content

Commit

Permalink
Initial checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
Atrix256 committed Jul 16, 2024
0 parents commit 340a0af
Show file tree
Hide file tree
Showing 9,525 changed files with 4,463,904 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.png filter=lfs diff=lfs merge=lfs -text
*.hdr filter=lfs diff=lfs merge=lfs -text
*.fbx filter=lfs diff=lfs merge=lfs -text
*.exr filter=lfs diff=lfs merge=lfs -text
gigi.exe filter=lfs diff=lfs merge=lfs -text
gigi.pdb filter=lfs diff=lfs merge=lfs -text
GigiEdit.exe filter=lfs diff=lfs merge=lfs -text
GigiEdit.pdb filter=lfs diff=lfs merge=lfs -text
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
**/.vs/*
**/x64/Debug/*
**/x64/Release/*
**/out/**/*.obj
Debug-windows-x86_64/
imgui.ini
HostApps/OpenGL/bin-int/Debug-x64/*
HostApps/OpenGL/bin/Debug-x64/*
GigiEdit.exe
GigiEdit.pdb
GigiCompiler.exe
GigiCompiler.pdb
GigiViewerDX12.exe
GigiViewerDX12.pdb
GigiViewerDX12.exp
GigiViewerDX12.lib

GigiEdit/GigiEdit.aps

**/__pycache__/
62 changes: 62 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
variables:
GIT_DEPTH: 1

stages:
- build

win64_build_release:
stage: build
script:
- .\\buildscripts\\Build_Release.bat
artifacts:
paths:
- GigiViewerDX12.exe
- GigiViewerDX12.pdb
- GigiViewerDX12.exp
- GigiViewerDX12.lib
- GigiEdit.exe
- GigiEdit.pdb
- GigiCompiler.exe
- GigiCompiler.pdb
- python310.dll
- libcurl-x64.dll
- WinPixEventRuntime.dll
- dxcompiler.dll
- dxil.dll
- slang.dll
- gigihelp.html
- gigischema.json
- LICENSE
- MakeCode_UnitTests_DX12.bat
- MakeCode_UnitTests_DX12.py
- MakeCode_UnitTests_FB.bat
- MakeCode_UnitTests_FB.py
- MakeCode_UnitTests_UE_5_3.bat
- MakeCode_UnitTests_UE_5_3.py
- GigiViewerDX12/python/*
- _GeneratedCode/*
- Techniques/*
- UserDocumentation/*
- external/AgilitySDK/bin/*
- external/fonts/OpenSans-Regular.ttf
- GigiCompilerLib/Backends/DX12/templates/*
- GigiCompilerLib/Backends/Frostbite/templates/*
- GigiCompilerLib/Backends/UE_5_3/templates/*
expire_in: 1 week
tags:
- seed
- halcyon
- vs2022
- windows
- cpu

win64_build_debug:
stage: build
script:
- .\\buildscripts\\Build_Debug.bat
tags:
- seed
- halcyon
- vs2022
- windows
- cpu
7 changes: 7 additions & 0 deletions BUILDING.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
To build Gigi, open gigi.sln and build solution.

GigiEdit is the editor, where you edit techniques.

GigiViewerDX12 is the viewer where you can run, profile and debug your techniques.

GigiCompiler is the command line interface to generate code from a .gg file.
Loading

0 comments on commit 340a0af

Please sign in to comment.