diff --git a/src/graphics/graphics.c b/src/graphics/graphics.c index c3d01940..decd5187 100644 --- a/src/graphics/graphics.c +++ b/src/graphics/graphics.c @@ -98,6 +98,7 @@ void lovrGraphicsCreateWindow(int w, int h, int fullscreen, int msaa, const char glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0); + glfwWindowHint(GLFW_SAMPLES, msaa); #else glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);