Skip to content

Commit 67fb32a

Browse files
authored
Merge pull request #62 from jackvdm/patch-1
Explanation of shader programming and typos
2 parents 463f1ce + 8da38d4 commit 67fb32a

File tree

1 file changed

+26
-14
lines changed

1 file changed

+26
-14
lines changed

02-introduction.rst

+26-14
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ is that there are a lot of tutorials online that still use this fixed pipeline
3232
and because most of them were written before modern GL, they're not even aware
3333
(and cannot) that they use a deprecated API.
3434

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
3636
easy. It'll contain GL commands such as:
3737

3838
.. code::
@@ -172,11 +172,23 @@ The graphic pipeline
172172

173173
If you want to understand modern OpenGL, you have to understand the graphic
174174
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:
180192

181193
.. image:: images/chapter-02/gl-pipeline.png
182194
:width: 100%
@@ -205,9 +217,9 @@ while a minimal fragment shader would be:
205217
These two shaders are not very useful because the first shader will always
206218
output the null vertex (`gl_Position` is a special variable) while the second
207219
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.
209221

210-
One question remains: when are those shaders executed exactly ? The vertex
222+
One question remains: when are those shaders executed exactly? The vertex
211223
shader is executed for each vertex that is given to the rendering pipeline
212224
(we'll see excatly what that means later) and the fragment shader is
213225
executed on each fragment (= pixel) that is generated after the vertex
@@ -218,15 +230,15 @@ executed 21 times, once for each fragment.
218230
Buffers
219231
+++++++
220232

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
222234
modern GL is that vertices are stored on the CPU and need to be uploaded to
223235
the GPU before rendering. The way to do that is to build buffers on the CPU
224236
and to send these buffers onto the GPU. If your data does not change, no need
225237
to upload them again. That is the big difference with the previous fixed
226238
pipeline where data were uploaded at each rendering call (only display lists
227239
were built into GPU memory).
228240

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
230242
your vertex structure and you're free to use as much information you may need
231243
for each vertex. The only condition is that all vertices from a buffer have the
232244
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
286298
if we labeled the first attribute `position`, this attribute is not yet bound
287299
to the actual `position` in the numpy array. We'll need to do it explicitly
288300
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
290302
see that later.
291303

292304
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:
332344
gl_FragColor = v_color;
333345
}
334346
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?
336348
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?
338350

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
340352
is made using the distance of the fragment to each individual vertex. This is a
341353
very important concept to understand. Any varying value is interpolated between
342354
the vertices that compose the elementary item (mostly, line or triangle).

0 commit comments

Comments
 (0)