forked from ARM-software/opengl-es-sdk-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutorials.dox
152 lines (107 loc) · 2.96 KB
/
tutorials.dox
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
\page tutorials Tutorials
\brief Tutorials on how to get the best out of OpenGL ES on Mali GPUs.
\note
Finished versions of all of the tutorials listed are included in the SDK.
See \ref gettingStartedGuideBuildingTheSamples for instructions on how to use them.
Tutorials
---------------
These tutorials introduce the basics of an OpenGL ES application.
The source for these samples can be found in the
\if windows
*samples\\tutorials*
\endif
\if linux
*samples/tutorials*
\endif
folder of the SDK.
Summary of changes between versions of the OpenGL ES SDK for Android.
-# \subpage firstNative
\copybrief firstNative
-# \subpage introductionToShaders
\copybrief introductionToShaders
-# \subpage graphicsSetup
\copybrief graphicsSetup
-# \subpage simpleTriangle
\copybrief simpleTriangle
-# \subpage simpleCube
\copybrief simpleCube
-# \subpage textureCube
\copybrief textureCube
-# \subpage lighting
\copybrief lighting
-# \subpage normalMapping
\copybrief normalMapping
-# \subpage assetLoading
\copybrief assetLoading
-# \subpage vbos
\copybrief vbos
-# \subpage fileLoading
\copybrief fileLoading
-# \subpage mipmappingCompressed
\copybrief mipmappingCompressed
-# \subpage projectedLights
\copybrief projectedLights
-# \subpage bloom
\copybrief bloom
-# \subpage metaballs
\copybrief metaballs
-# \subpage minMaxBlending
\copybrief minMaxBlending
-# \subpage integerLogic
\copybrief integerLogic
-# \subpage etcTexture
\copybrief etcTexture
-# \subpage boids
\copybrief boids
-# \subpage shadowMapping
\copybrief shadowMapping
-# \subpage occlusionQuery
\copybrief occlusionQuery
-# \subpage instancedTessellation
\copybrief instancedTessellation
-# \subpage instancing
\copybrief instancing
-# \subpage multiview
\copybrief multiview
Advanced Samples
------------------
These samples show optimised implementations of more complex algorithms.
The source for these samples can be found in the
\if windows
*samples\\advanced_samples*
\endif
\if linux
*samples/advanced_samples*
\endif
folder of the SDK.
- \subpage compressedAlphaChannels
\copybrief compressedAlphaChannels
- \subpage highQualityText
\copybrief highQualityText
- \subpage threadSync
\copybrief threadSync
- \subpage metaballs
\copybrief metaballs
- \subpage terrain
\copybrief terrain
- \subpage skybox
\copybrief skybox
- \subpage translucency
\copybrief translucency
- \subpage astcTextures
\copybrief astcTextures
- \subpage computeIntro
\copybrief computeIntro
- \subpage computeParticles
\copybrief computeParticles
- \subpage occlusionCulling
\copybrief occlusionCulling
- \subpage oceanFFT
\copybrief oceanFFT
- \subpage tessellation
\copybrief tessellation
- \subpage proceduralGeometry
\copybrief proceduralGeometry
The rest of the advanced samples are summarised in \subpage advancedSamples
*/