Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
This commit is contained in:
commit
7387721940
15
bba/main.cc
Normal file
15
bba/main.cc
Normal file
@ -0,0 +1,15 @@
|
||||
#include <unistd.h>
|
||||
#include <assert.h>
|
||||
int main()
|
||||
{
|
||||
char buffer[512];
|
||||
int i, j;
|
||||
while (1) {
|
||||
i = read(0, buffer, 512);
|
||||
if (i == 0) break;
|
||||
assert(i > 0);
|
||||
j = write(1, buffer, i);
|
||||
assert(i == j);
|
||||
}
|
||||
return 0;
|
||||
}
|
@ -147,6 +147,7 @@ struct GraphicElement
|
||||
{
|
||||
G_NONE,
|
||||
G_LINE,
|
||||
G_ARROW,
|
||||
G_BOX,
|
||||
G_CIRCLE,
|
||||
G_LABEL
|
||||
|
@ -246,7 +246,7 @@ FPGAViewWidget::FPGAViewWidget(QWidget *parent)
|
||||
{
|
||||
colors_.background = QColor("#000000");
|
||||
colors_.grid = QColor("#333");
|
||||
colors_.frame = QColor("#d0d0d0");
|
||||
colors_.frame = QColor("#808080");
|
||||
colors_.hidden = QColor("#606060");
|
||||
colors_.inactive = QColor("#303030");
|
||||
colors_.active = QColor("#f0f0f0");
|
||||
@ -327,7 +327,7 @@ void FPGAViewWidget::drawDecal(LineShaderData &out, const DecalXY &decal)
|
||||
line.build(out);
|
||||
}
|
||||
|
||||
if (el.type == GraphicElement::G_LINE) {
|
||||
if (el.type == GraphicElement::G_LINE || el.type == GraphicElement::G_ARROW) {
|
||||
PolyLine(offsetX + scale * el.x1, offsetY + scale * el.y1, offsetX + scale * el.x2, offsetY + scale * el.y2)
|
||||
.build(out);
|
||||
}
|
||||
@ -360,7 +360,7 @@ void FPGAViewWidget::drawDecal(LineShaderData out[], const DecalXY &decal)
|
||||
}
|
||||
}
|
||||
|
||||
if (el.type == GraphicElement::G_LINE) {
|
||||
if (el.type == GraphicElement::G_LINE || el.type == GraphicElement::G_ARROW) {
|
||||
auto line = PolyLine(offsetX + scale * el.x1, offsetY + scale * el.y1, offsetX + scale * el.x2,
|
||||
offsetY + scale * el.y2);
|
||||
switch (el.style) {
|
||||
|
@ -647,7 +647,7 @@ void pipGfx(std::vector<GraphicElement> &g, int x, int y, float x1, float y1, fl
|
||||
float ty = 0.5 * (y1 + y2);
|
||||
|
||||
GraphicElement el;
|
||||
el.type = GraphicElement::G_LINE;
|
||||
el.type = GraphicElement::G_ARROW;
|
||||
el.style = style;
|
||||
|
||||
if (fabsf(x1 - swx1) < 0.001 && fabsf(x2 - swx1) < 0.001) {
|
||||
|
Loading…
Reference in New Issue
Block a user