We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d3c22 commit c31685cCopy full SHA for c31685c
README.md
@@ -8,7 +8,7 @@ due to the underlying [glbinding](https://github.com/cginternals/glbinding) and
8
levels on top. Typical processes are automated and missing features in the used OpenGL driver
9
are partially simulated or even emulated.
10
11
-An example OpenGL snippet may look like this:
+The following code snippet shows an exemplary use of the OpenGL API:
12
```cpp
13
// OpenGL API
14
@@ -31,7 +31,7 @@ glUseProgram(program);
31
glUniform2f(glGetUniformLocation(program, "extent"), 1.0f, 0.5f);
32
```
33
34
-However, the same functionality can be achieved with globjects using the following code:
+Using *globjects*, this can be reduced to the following code:
35
36
// globjects API
37
0 commit comments