Skip to content

Commit a7a1c2a

Browse files
committed
create
0 parents  commit a7a1c2a

File tree

3 files changed

+65
-0
lines changed

3 files changed

+65
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.png filter=lfs diff=lfs merge=lfs -text

.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Uncomment these types if you want even more clean repository. But be careful.
2+
# It can make harm to an existing project source. Read explanations below.
3+
#
4+
# Resource files are binaries containing manifest, project icon and version info.
5+
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6+
#*.res
7+
#
8+
# Type library file (binary). In old Delphi versions it should be stored.
9+
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10+
#*.tlb
11+
#
12+
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13+
# Uncomment this if you are not using diagrams or use newer Delphi version.
14+
#*.ddp
15+
#
16+
# Visual LiveBindings file. Added in Delphi XE2.
17+
# Uncomment this if you are not using LiveBindings Designer.
18+
#*.vlb
19+
#
20+
# Deployment Manager configuration file for your project. Added in Delphi XE2.
21+
# Uncomment this if it is not mobile development and you do not use remote debug feature.
22+
#*.deployproj
23+
#
24+
25+
# Delphi compiler-generated binaries (safe to delete)
26+
*.exe
27+
#*.dll
28+
*.bpl
29+
*.bpi
30+
*.dcp
31+
*.so
32+
*.apk
33+
*.drc
34+
*.map
35+
*.dres
36+
*.rsm
37+
*.tds
38+
*.dcu
39+
*.lib
40+
41+
# Delphi autogenerated files (duplicated info)
42+
*.cfg
43+
*Resource.rc
44+
45+
# Delphi local files (user-specific info)
46+
*.local
47+
*.identcache
48+
*.projdata
49+
*.tvsconfig
50+
*.dsk
51+
52+
# Delphi history and backups
53+
__history/
54+
__recovery/
55+
*.~*
56+
57+
# Castalia statistics file
58+
*.stat

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# ComputeShader
2+
OpenGL の Compute Shader を用いて汎用的な計算を行う方法。
3+
4+
----
5+
6+
[![Delphi Starter](http://img.en25.com/EloquaImages/clients/Embarcadero/%7B063f1eec-64a6-4c19-840f-9b59d407c914%7D_dx-starter-bn159.png)](https://www.embarcadero.com/jp/products/delphi/starter)

0 commit comments

Comments
 (0)