|
|
@ -9,9 +9,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
#include "controller.hpp" |
|
|
|
#include "controller.hpp" |
|
|
|
#include "renderer.hpp" |
|
|
|
#include "renderer.hpp" |
|
|
|
|
|
|
|
#include "window.hpp" |
|
|
|
#define WINDOW_WIDTH 640 |
|
|
|
|
|
|
|
#define WINDOW_HEIGHT 480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define RUSTY_METAL_TEXTURE "assets/textures/rusty_metal.jpg" |
|
|
|
#define RUSTY_METAL_TEXTURE "assets/textures/rusty_metal.jpg" |
|
|
|
|
|
|
|
|
|
|
@ -108,8 +106,6 @@ void framebuffer_size_callback(GLFWwindow* win, int w, int h) { |
|
|
|
glViewport(0, 0, w, h); |
|
|
|
glViewport(0, 0, w, h); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void mouse_callback(GLFWwindow* win, double x, double y) {} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void processInput(GLFWwindow *win) { |
|
|
|
void processInput(GLFWwindow *win) { |
|
|
|
int action = glfwGetKey(win, GLFW_KEY_ESCAPE); |
|
|
|
int action = glfwGetKey(win, GLFW_KEY_ESCAPE); |
|
|
|
if (action == GLFW_PRESS) { |
|
|
|
if (action == GLFW_PRESS) { |
|
|
@ -143,7 +139,6 @@ int main() { |
|
|
|
|
|
|
|
|
|
|
|
// Input
|
|
|
|
// Input
|
|
|
|
glfwSetInputMode(win, GLFW_CURSOR, GLFW_CURSOR_DISABLED); // Disable cursor
|
|
|
|
glfwSetInputMode(win, GLFW_CURSOR, GLFW_CURSOR_DISABLED); // Disable cursor
|
|
|
|
glfwSetCursorPosCallback(win, mouse_callback); // Mouse capture callback
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
float borderColor[] = {1.0f, 1.0f, 1.0f, 1.0f}; |
|
|
|
float borderColor[] = {1.0f, 1.0f, 1.0f, 1.0f}; |
|
|
|
glTexParameterfv(GL_TEXTURE_2D, GL_TEXTURE_BORDER_COLOR, borderColor); |
|
|
|
glTexParameterfv(GL_TEXTURE_2D, GL_TEXTURE_BORDER_COLOR, borderColor); |
|
|
|