Skip to content

Commit 99d757b

Browse files
committed
Initial commit
1 parent 085a92d commit 99d757b

File tree

302 files changed

+108690
-0
lines changed

Some content is hidden

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

302 files changed

+108690
-0
lines changed

.gitignore

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
#################
2+
## Visual Studio
3+
#################
4+
5+
## Ignore Visual Studio temporary files, build results, and
6+
## files generated by popular Visual Studio add-ons.
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.sln.docstates
12+
13+
# Build results
14+
15+
[Dd]ebug/
16+
[Rr]elease/
17+
x64/
18+
build/
19+
[Bb]in/
20+
[Oo]bj/
21+
22+
# MSTest test Results
23+
[Tt]est[Rr]esult*/
24+
[Bb]uild[Ll]og.*
25+
26+
*_i.c
27+
*_p.c
28+
*.ilk
29+
*.meta
30+
*.obj
31+
*.pch
32+
*.pdb
33+
*.pgc
34+
*.pgd
35+
*.rsp
36+
*.sbr
37+
*.tlb
38+
*.tli
39+
*.tlh
40+
*.tmp
41+
*.tmp_proj
42+
*.log
43+
*.vspscc
44+
*.vssscc
45+
.builds
46+
*.pidb
47+
*.log
48+
*.scc
49+
50+
# Visual C++ cache files
51+
ipch/
52+
*.aps
53+
*.ncb
54+
*.opensdf
55+
*.sdf
56+
*.cachefile
57+
*.VC.opendb
58+
59+
# Visual Studio profiler
60+
*.psess
61+
*.vsp
62+
*.vspx
63+
64+
# Guidance Automation Toolkit
65+
*.gpState
66+
67+
# ReSharper is a .NET coding add-in
68+
_ReSharper*/
69+
*.[Rr]e[Ss]harper
70+
71+
# TeamCity is a build add-in
72+
_TeamCity*
73+
74+
# DotCover is a Code Coverage Tool
75+
*.dotCover
76+
77+
# NCrunch
78+
*.ncrunch*
79+
.*crunch*.local.xml
80+
81+
# Installshield output folder
82+
[Ee]xpress/
83+
84+
# DocProject is a documentation generator add-in
85+
DocProject/buildhelp/
86+
DocProject/Help/*.HxT
87+
DocProject/Help/*.HxC
88+
DocProject/Help/*.hhc
89+
DocProject/Help/*.hhk
90+
DocProject/Help/*.hhp
91+
DocProject/Help/Html2
92+
DocProject/Help/html
93+
94+
# Click-Once directory
95+
publish/
96+
97+
# Publish Web Output
98+
*.Publish.xml
99+
*.pubxml
100+
101+
# NuGet Packages Directory
102+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
103+
#packages/
104+
105+
# Windows Azure Build Output
106+
csx
107+
*.build.csdef
108+
109+
# Windows Store app package directory
110+
AppPackages/
111+
112+
# Others
113+
sql/
114+
*.Cache
115+
ClientBin/
116+
[Ss]tyle[Cc]op.*
117+
~$*
118+
*~
119+
*.dbmdl
120+
*.[Pp]ublish.xml
121+
*.pfx
122+
*.publishsettings
123+
124+
# RIA/Silverlight projects
125+
Generated_Code/
126+
127+
# Backup & report files from converting an old project file to a newer
128+
# Visual Studio version. Backup files are not needed, because we have git ;-)
129+
_UpgradeReport_Files/
130+
Backup*/
131+
UpgradeLog*.XML
132+
UpgradeLog*.htm
133+
134+
# SQL Server files
135+
App_Data/*.mdf
136+
App_Data/*.ldf
137+
138+
#############
139+
## Windows detritus
140+
#############
141+
142+
# Windows image file caches
143+
Thumbs.db
144+
ehthumbs.db
145+
146+
# Folder config file
147+
Desktop.ini
148+
149+
# Recycle Bin used on file shares
150+
$RECYCLE.BIN/
151+
152+
# Mac crap
153+
.DS_Store
154+
155+
####################
156+
## Sample framework
157+
####################
158+
159+
ShaderCache/
160+
*.exe
161+
*.dll
162+
*.deps
163+
CorneaRefraction/CorneaRefractionMap.dds
164+
Temp_Lightmap.dds
165+
imgui.ini
166+
167+
# Sublime
168+
*.sublime-workspace

BindlessDeferred/AppConfig.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//=================================================================================================
2+
//
3+
// Bindless Deferred Texturing Sample
4+
// by MJP
5+
// http://mynameismjp.wordpress.com/
6+
//
7+
// All code and content licensed under the MIT license
8+
//
9+
//=================================================================================================
10+
11+
#define EnableSkyModel_ (1)
12+
#define EnableEmbree_ (0)

0 commit comments

Comments
 (0)