Skip to content

Commit

Permalink
Initial commit of existing code.
Browse files Browse the repository at this point in the history
* All renderdoc code up to this point was written by me, history is available by request
  • Loading branch information
baldurk committed May 2, 2014
1 parent 04b1549 commit c38affc
Show file tree
Hide file tree
Showing 695 changed files with 230,316 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Based on .gitattributes template from https://help.github.com/articles/dealing-with-line-endings

# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.cc text
*.cpp text
*.h text
*.hlsl text
*.htm text
*.md text
*.xml text
*.txt text

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf
*.csproj text eol=crlf
*.vcxproj text eol=crlf
*.shfbproj text eol=crlf

*.resx text eol=crlf
*.aml text eol=crlf

*.cs text eol=crlf diff=csharp

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.bmp binary
*.ico binary

*.exe binary
*.dll binary
*.lib binary
*.pdb binary

*.rtf binary
*.snk binary
*.rc binary

# Specific files that should be left alone
renderdoccmd/resource.h binary
renderdoc/data/resource.h binary
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Demos/
Debug/
Documentation/
Release/
Profile/
dist/
Resources/*.png
*.exe
*.aps
*.ilk
*.manifest
*.user
bin/
obj/
*.opensdf
*.pdb
*.o
*.verto
*.frago
*.so
*.a
*.exp
*.lib
*.sdf
*.suo
*.PixRun
*.dll
symsrv.yes
capture.log*
capture.d3dbgr*
Direct3DLog.txt
ipch/
*.nvuser
*.shfbproj_*
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
all:
cd renderdoc && make librenderdoc.so
cd renderdoccmd && make bin/renderdoccmd

clean:
cd renderdoc && make clean
21 changes: 21 additions & 0 deletions ScintillaNET/License.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
ScintillaNET is based on the Scintilla component by Neil Hodgson.

ScintillaNET is released on this same license.

The ScintillaNET bindings are Copyright 2002-2006 by Garrett Serack <[email protected]>

All Rights Reserved

Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation.

GARRETT SERACK AND ALL EMPLOYERS PAST AND PRESENT DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL GARRETT SERACK AND ALL EMPLOYERS PAST AND PRESENT BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

The license for Scintilla is as follows:
-----------------------------------------------------------------------
Copyright 1998-2006 by Neil Hodgson <[email protected]>

All Rights Reserved

Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation.

NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Binary file added ScintillaNET/SciLexer.dll
Binary file not shown.
Binary file added ScintillaNET/SciLexer64.dll
Binary file not shown.
Binary file added ScintillaNET/ScintillaNET.dll
Binary file not shown.
Binary file added ScintillaNET/ScintillaNET.pdb
Binary file not shown.
Loading

0 comments on commit c38affc

Please sign in to comment.