From d6df1b8ce9582a65c03de8f1de627e8140319ab0 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 3 Jul 2018 11:48:05 +0200 Subject: Fixed OpenGL issues noticed on mingw intel/nvidia --- gui/fpgaviewwidget.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gui') diff --git a/gui/fpgaviewwidget.h b/gui/fpgaviewwidget.h index 77735071..0cd84c9c 100644 --- a/gui/fpgaviewwidget.h +++ b/gui/fpgaviewwidget.h @@ -191,6 +191,7 @@ class LineShader } static constexpr const char *vertexShaderSource_ = + "#version 110\n" "attribute highp vec2 position;\n" "attribute highp vec2 normal;\n" "attribute highp float miter;\n" @@ -201,7 +202,8 @@ class LineShader " gl_Position = projection * vec4(p, 0.0, 1.0);\n" "}\n"; - static constexpr const char *fragmentShaderSource_ = "uniform lowp vec4 color;\n" + static constexpr const char *fragmentShaderSource_ = "#version 110\n" + "uniform lowp vec4 color;\n" "void main() {\n" " gl_FragColor = color;\n" "}\n"; -- cgit v1.2.3