aboutsummaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-07-05 10:14:19 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-07-05 10:14:19 +0200
commit2fe13e7a079eb5df30f23b0e4da33d8d8067a9b1 (patch)
tree54cb0d8d42fedbeaaf73313a017d114244b3cece /gui
parentfcff203c23ccd4ced76dafe1496b8c83adb88ddc (diff)
downloadnextpnr-2fe13e7a079eb5df30f23b0e4da33d8d8067a9b1.tar.gz
nextpnr-2fe13e7a079eb5df30f23b0e4da33d8d8067a9b1.tar.bz2
nextpnr-2fe13e7a079eb5df30f23b0e4da33d8d8067a9b1.zip
make GUI compile on MSVC
Diffstat (limited to 'gui')
-rw-r--r--gui/fpgaviewwidget.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/fpgaviewwidget.h b/gui/fpgaviewwidget.h
index 0cd84c9c..0342bb8a 100644
--- a/gui/fpgaviewwidget.h
+++ b/gui/fpgaviewwidget.h
@@ -34,17 +34,17 @@ NEXTPNR_NAMESPACE_BEGIN
// Vertex2DPOD is a structure of X, Y coordinates that can be passed to OpenGL
// directly.
-struct Vertex2DPOD
+NPNR_PACKED_STRUCT(struct Vertex2DPOD
{
GLfloat x;
GLfloat y;
Vertex2DPOD(GLfloat X, GLfloat Y) : x(X), y(Y) {}
-} __attribute__((packed));
+});
// Vertex2DPOD is a structure of R, G, B, A values that can be passed to OpenGL
// directly.
-struct ColorPOD
+NPNR_PACKED_STRUCT(struct ColorPOD
{
GLfloat r;
GLfloat g;
@@ -53,7 +53,7 @@ struct ColorPOD
ColorPOD(GLfloat R, GLfloat G, GLfloat B, GLfloat A) : r(R), g(G), b(B), a(A) {}
ColorPOD(const QColor &color) : r(color.redF()), g(color.greenF()), b(color.blueF()), a(color.alphaF()) {}
-} __attribute__((packed));
+});
// LineShaderData is a built set of vertices that can be rendered by the
// LineShader.