From 2fe13e7a079eb5df30f23b0e4da33d8d8067a9b1 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 5 Jul 2018 10:14:19 +0200 Subject: make GUI compile on MSVC --- gui/fpgaviewwidget.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gui') 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. -- cgit v1.2.3