summaryrefslogtreecommitdiff
path: root/src/render/modernopenglgraphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/modernopenglgraphics.cpp')
-rw-r--r--src/render/modernopenglgraphics.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/render/modernopenglgraphics.cpp b/src/render/modernopenglgraphics.cpp
index 73a594f32..6955571eb 100644
--- a/src/render/modernopenglgraphics.cpp
+++ b/src/render/modernopenglgraphics.cpp
@@ -661,10 +661,35 @@ void ModernOpenGLGraphics::popClipArea()
void ModernOpenGLGraphics::drawPoint(int x, int y)
{
+ setTexturingAndBlending(false);
+ const ClipRect &clipArea = mClipStack.top();
+ GLfloat vertices[] =
+ {
+ x + clipArea.xOffset, y + clipArea.yOffset, 0.0f, 0.0f
+ };
+ mglBufferData(GL_ARRAY_BUFFER, sizeof(vertices),
+ vertices, GL_DYNAMIC_DRAW);
+#ifdef DEBUG_DRAW_CALLS
+ mDrawCalls ++;
+#endif
+ glDrawArrays(GL_POINTS, 0, 1);
}
void ModernOpenGLGraphics::drawLine(int x1, int y1, int x2, int y2)
{
+ setTexturingAndBlending(false);
+ const ClipRect &clipArea = mClipStack.top();
+ GLfloat vertices[] =
+ {
+ x1 + clipArea.xOffset, y1 + clipArea.yOffset, 0.0f, 0.0f,
+ x2 + clipArea.xOffset, y2 + clipArea.yOffset, 0.0f, 0.0f
+ };
+ mglBufferData(GL_ARRAY_BUFFER, sizeof(vertices),
+ vertices, GL_DYNAMIC_DRAW);
+#ifdef DEBUG_DRAW_CALLS
+ mDrawCalls ++;
+#endif
+ glDrawArrays(GL_LINES, 0, 2);
}
void ModernOpenGLGraphics::drawRectangle(const Rect& rect)