From ec5e39fe21daac4563fe692ec7f5a1fc75b2f66d Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Thu, 23 Dec 2021 04:55:58 +0100 Subject: [PATCH] refactored code to work with new lib design --- src/Plot3D.cpp | 4 ++-- vendor/lol | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Plot3D.cpp b/src/Plot3D.cpp index 6753a1f..f83d91f 100644 --- a/src/Plot3D.cpp +++ b/src/Plot3D.cpp @@ -48,7 +48,7 @@ Plot3D::Plot3D(const lol::BBox& domainAndRange, float scale, float resolution, P unsigned int sliceLength = CreateVertexList(domainAndRange, scale, resolution, func, functionValues, vertices); Triangulate(functionValues, sliceLength, indices); - vao = lol::VAOFactory::Produce(vertices, indices, + vao = lol::UniqueVertexArrayObject::Share(vertices, indices, lol::Layout { { 3, GL_FLOAT, GL_FALSE, sizeof(float) * 4, (void*)0 }, { 1, GL_FLOAT, GL_FALSE, sizeof(float) * 4, (void*)(3 * sizeof(float))} @@ -58,7 +58,7 @@ Plot3D::Plot3D(const lol::BBox& domainAndRange, float scale, float resolution, P shader = lol::ShaderManager::GetInstance().Get(PLOT3D_ID); if (shader == nullptr) { - shader = lol::ShaderFactory::Produce( + shader = lol::UniqueShader::Share( R"( #version 440 core diff --git a/vendor/lol b/vendor/lol index 711d18e..5875f12 160000 --- a/vendor/lol +++ b/vendor/lol @@ -1 +1 @@ -Subproject commit 711d18e7184fcfc41c1c065b1f97b00f361ab1f8 +Subproject commit 5875f1246f642950af7fdf3c3c7f5a9d603a76cc