opengl-tutorials
opengl-tutorials copied to clipboard
Tutorials from the following playlist: https://www.youtube.com/playlist?list=PLPaoO-vpZnumdcb4tZc4x5Q-v7CkrQ6M-
I have literally copied and pasted the code from lessons 4 into my editor and there are no errors showing in the text when I run the code. But after...
I recognize that, given the stark lack of mentions on this topic that this may be an error exclusive to me. Thank you in advance for putting up with a...
Getting GL errors with [these lines](https://github.com/VictorGordan/opengl-tutorials/blob/346624ecc5a03f0f6d1d19247db0cc68d21bb7a5/YoutubeOpenGL%2022%20-%20Anti-Aliasing/Main.cpp#L149): ``` glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_MIN_FILTER, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_MAG_FILTER, GL_NEAREST); glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); // Prevents edge bleeding glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); // Prevents edge bleeding ``` Looks like...
All of them are PNGs disguised as JPEGs! It's pretty simple to confirm: Open one in Notepad, and the first few characters will identify it as a PNG:  Re-saving...
Whenever I load a model and run the program, i am being presented with the message "**unhandeled exception**" and the line: `JSON_THROW(type_error::create(302, concat("type must be number, but is ", j.type_name()),...
In the file [YoutubeOpenGL 12 - Mesh Class](https://github.com/VictorGordan/opengl-tutorials/blob/main/YoutubeOpenGL%2012%20-%20Mesh%20Class/VBO.h), specifically in `main.cpp`, we have a `Vertex vertices[]` array where we store most of our mesh data: ```cpp Vertex vertices[] = {...
Why is it that when I drag the mouse in the camera project, the object only rotates in a large circle instead of around its spin axis?