summaryrefslogtreecommitdiff
path: root/gfx/gl
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/gl')
-rw-r--r--gfx/gl/billboardPainter.cpp2
-rw-r--r--gfx/gl/shadowStenciller.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/gfx/gl/billboardPainter.cpp b/gfx/gl/billboardPainter.cpp
index 38c4d3e..d021efb 100644
--- a/gfx/gl/billboardPainter.cpp
+++ b/gfx/gl/billboardPainter.cpp
@@ -90,5 +90,5 @@ BillboardPainter::renderBillBoard(
const auto & view) {
return this->view * view * extentsMat;
}});
- mesh.Draw();
+ mesh.draw();
}
diff --git a/gfx/gl/shadowStenciller.cpp b/gfx/gl/shadowStenciller.cpp
index cc25f30..3625524 100644
--- a/gfx/gl/shadowStenciller.cpp
+++ b/gfx/gl/shadowStenciller.cpp
@@ -75,5 +75,5 @@ ShadowStenciller::renderStencil(const glTexture & stencil, const MeshBase & mesh
const auto & viewProjection) {
return viewProjection * extentsMat;
}});
- mesh.Draw();
+ mesh.draw();
}