Wow! Hands down the best tutorial I have ever seen. How do you have such low views?? This is gold!
@KaidenBird Жыл бұрын
A lot quicker than vulkan haha! Looking good so far.
@tristanlecomte3747 Жыл бұрын
Thank you for the tutorial. In windows if you go back by 2 folders (build/debug) you can read shaders files without copying the folder into the build environment. for example file.open("../../src/shaders/vertex.vert");
@shagarov Жыл бұрын
Hello. I follow you course in MacOs. I have problem with compile shader. I found fix for this. Simply add hints before create window: glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
@ChrisTian-ej5zb7 ай бұрын
New here 🥳 keep it up!
@rushikeshbhavsar15645 ай бұрын
cant we just use alloc rather than doing char[1024]