OpenGL-utility/examples/debug/main.cpp

95 lines
2.4 KiB
C++
Raw Normal View History

2021-01-19 18:25:46 +00:00
#include <iostream>
#include "openglu.hpp"
#include <glad/glad.h>
#include <GLFW/glfw3.h>
void framebuffer_size_callback(GLFWwindow* window, int width, int height)
{
oglu::SetViewport(0, 0, width, height);
}
void processInput(GLFWwindow* window)
{
if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS)
glfwSetWindowShouldClose(window, true);
}
int main(int argc, char** argv)
{
2021-01-21 00:31:23 +00:00
// Setup GLFW
2021-01-19 18:25:46 +00:00
glfwInit();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 6);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
const GLFWvidmode* screen = glfwGetVideoMode(glfwGetPrimaryMonitor());
int windowSize = screen->height / 4 * 3;
2021-01-21 00:31:23 +00:00
// Create Window
2021-01-19 18:25:46 +00:00
GLFWwindow* window = glfwCreateWindow(windowSize, windowSize, "Debug", NULL, NULL);
if (window == nullptr)
{
std::cerr << "Failed to create GLFW window" << std::endl;
glfwTerminate();
return -1;
}
glfwMakeContextCurrent(window);
2021-01-21 00:31:23 +00:00
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
2021-01-19 18:25:46 +00:00
2021-01-21 00:31:23 +00:00
// glad stuff
2021-01-19 18:25:46 +00:00
oglu::LoadGLLoader((GLADloadproc)glfwGetProcAddress);
oglu::SetViewport(0, 0, windowSize, windowSize);
2021-01-21 00:31:23 +00:00
// Create vertices for square
2021-01-19 18:47:54 +00:00
float vertices[] = {
2021-01-20 15:51:55 +00:00
0.5f, 0.5f, 0.0f, 1.0f, 0.0f, 0.0f, // top right
0.5f, -0.5f, 0.0f, 0.0f, 1.0f, 0.0f, // bottom right
-0.5f, -0.5f, 0.0f, 0.0f, 0.0f, 1.0f, // bottom left
-0.5f, 0.5f, 0.0f, 0.0f, 1.0f, 0.0f // top left
2021-01-19 18:47:54 +00:00
};
2021-01-20 15:51:55 +00:00
unsigned int indices[] = {
0, 1, 3, // first triangle
1, 2, 3 // second triangle
2021-01-19 18:47:54 +00:00
};
2021-01-20 15:51:55 +00:00
oglu::VertexAttribute topology[] = {
{ 0, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), (void*)0 },
{ 1, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), (void*)(3 * sizeof(float)) }
};
2021-01-21 00:31:23 +00:00
// Make a square
oglu::Object square = oglu::MakeObject(vertices, sizeof(vertices), indices, sizeof(indices), topology, sizeof(topology));
// Create a shader
oglu::Shader shader;
2021-01-21 00:31:23 +00:00
try
2021-01-20 15:51:55 +00:00
{
shader = oglu::MakeShader("shaders/vertexShader.vert", "shaders/fragmentShader.frag");
2021-01-20 15:51:55 +00:00
}
catch (const std::exception& e)
{
std::cerr << e.what() << std::endl;
return -1;
}
2021-01-19 18:47:54 +00:00
2021-01-21 00:31:23 +00:00
// Window loop
2021-01-19 18:25:46 +00:00
while (!glfwWindowShouldClose(window))
{
processInput(window);
oglu::ClearScreen(GL_COLOR_BUFFER_BIT, oglu::Color(0.29f, 0.13f, 0.23f));
2021-01-20 16:58:55 +00:00
shader->SetUniform("ourColor", &oglu::Color::Transparent);
2021-01-20 15:51:55 +00:00
shader->Use();
square->BindAndDraw();
2021-01-20 15:51:55 +00:00
2021-01-19 18:25:46 +00:00
glfwSwapBuffers(window);
glfwPollEvents();
}
glfwTerminate();
return 0;
}