diff --git a/Image-Loading-and-Displaying-Examples.md b/Image-Loading-and-Displaying-Examples.md index 592ec91..849aabe 100644 --- a/Image-Loading-and-Displaying-Examples.md +++ b/Image-Loading-and-Displaying-Examples.md @@ -132,7 +132,7 @@ bool LoadTextureFromFile(const char* filename, GLuint* out_texture, int* out_wid } ``` -At initialization time, load our texture: +Load our texture after initializing OpenGL loader (for example after `glewInit()`): ```cpp int my_image_width = 0; int my_image_height = 0;