@@ -32,7 +32,7 @@ is that there are a lot of tutorials online that still use this fixed pipeline
32
32
and because most of them were written before modern GL, they're not even aware
33
33
(and cannot) that they use a deprecated API.
34
34
35
- How to know if a tutorial address the fixed pipeline ? It's relatively
35
+ How to know if a tutorial address the fixed pipeline? It's relatively
36
36
easy. It'll contain GL commands such as:
37
37
38
38
.. code ::
@@ -172,11 +172,23 @@ The graphic pipeline
172
172
173
173
If you want to understand modern OpenGL, you have to understand the graphic
174
174
pipeline and shaders. Shaders are pieces of program (using a C-like language)
175
- that are built onto the GPU and executed during the rendering
176
- pipeline. Depending on the nature of the shaders (there are many types
177
- depending on the version of OpenGL you're using), they will act at different
178
- stage of the rendering pipeline. To simplify this tutorial, we'll use only
179
- **vertex ** and **fragment ** shaders as shown below:
175
+ that are built onto the GPU and executed during the rendering pipeline. To
176
+ create the entire program in a single environment, we will write the shaders
177
+ as strings in the midst of our Python script and later pass them to the GPU:
178
+
179
+ .. code :: python
180
+
181
+ shader1 = """
182
+ //shader1 programmed in GLSL
183
+ """
184
+ shader2 = """
185
+ //shader2 programmed in GLSL
186
+ """
187
+
188
+ Depending on the nature of the shaders (there are many types depending on the
189
+ version of OpenGL you're using), they will act at different stages of the
190
+ rendering pipeline. To simplify this tutorial, we'll use only **vertex ** and
191
+ **fragment ** shaders as shown below:
180
192
181
193
.. image :: images/chapter-02/gl-pipeline.png
182
194
:width: 100%
@@ -205,9 +217,9 @@ while a minimal fragment shader would be:
205
217
These two shaders are not very useful because the first shader will always
206
218
output the null vertex (`gl_Position ` is a special variable) while the second
207
219
will only output the black color for any fragment (`gl_FragColor ` is also a
208
- special variable). We'll see later how to make them to do more useful things.
220
+ special variable). We'll see later how to make them do more useful things.
209
221
210
- One question remains: when are those shaders executed exactly ? The vertex
222
+ One question remains: when are those shaders executed exactly? The vertex
211
223
shader is executed for each vertex that is given to the rendering pipeline
212
224
(we'll see excatly what that means later) and the fragment shader is
213
225
executed on each fragment (= pixel) that is generated after the vertex
@@ -218,15 +230,15 @@ executed 21 times, once for each fragment.
218
230
Buffers
219
231
+++++++
220
232
221
- The next question is thus where do those vertices comes from ? The idea of
233
+ The next question is thus where do those vertices comes from? The idea of
222
234
modern GL is that vertices are stored on the CPU and need to be uploaded to
223
235
the GPU before rendering. The way to do that is to build buffers on the CPU
224
236
and to send these buffers onto the GPU. If your data does not change, no need
225
237
to upload them again. That is the big difference with the previous fixed
226
238
pipeline where data were uploaded at each rendering call (only display lists
227
239
were built into GPU memory).
228
240
229
- But what is the structure of a vertex ? OpenGL does not assume anything about
241
+ But what is the structure of a vertex? OpenGL does not assume anything about
230
242
your vertex structure and you're free to use as much information you may need
231
243
for each vertex. The only condition is that all vertices from a buffer have the
232
244
same structure (possibly with different content). This, again, is a big
@@ -286,7 +298,7 @@ This vertex shader now expects a vertex to possess 2 attributes, one named
286
298
if we labeled the first attribute `position `, this attribute is not yet bound
287
299
to the actual `position ` in the numpy array. We'll need to do it explicitly
288
300
at some point in our program and there is no magic that will bind the numpy
289
- array field to the right attribute, you'll have to do it yourself, but we'll
301
+ array field to the right attribute; you'll have to do it yourself, but we'll
290
302
see that later.
291
303
292
304
The second type of information we can feed the vertex shader is the **uniform **
@@ -332,11 +344,11 @@ and then in the fragment shader, we write:
332
344
gl_FragColor = v_color;
333
345
}
334
346
335
- The question is what is the value of `v_color ` inside the fragment shader ?
347
+ The question is what is the value of `v_color ` inside the fragment shader?
336
348
If you look at the figure that introduced the gl pipeline, we have 3 vertices
337
- and 21 fragments. What is the color of each individual fragment ?
349
+ and 21 fragments. What is the color of each individual fragment?
338
350
339
- The answer is *the interpolation of all 3 vertices color *. This interpolation
351
+ The answer is *the interpolation of all 3 vertices' color *. This interpolation
340
352
is made using the distance of the fragment to each individual vertex. This is a
341
353
very important concept to understand. Any varying value is interpolated between
342
354
the vertices that compose the elementary item (mostly, line or triangle).
0 commit comments