Lines Matching refs:puts

1517    puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1518 puts("");
1519 puts(" Names are identifiers of data sources which will be drawn as graphs");
1520 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1521 puts(" There can be multiple panes placed in rows and columns.");
1522 puts("");
1523 puts(" '+' separates names which will share a pane.");
1524 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1525 puts(" for the given pane.");
1526 puts(" ',' creates a new pane below the last one.");
1527 puts(" ';' creates a new pane at the top of the next column.");
1528 puts(" '=' followed by a string, changes the name of the last data source");
1529 puts(" to that string");
1530 puts("");
1531 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1532 puts("");
1533 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1534 puts(" a name, it is possible to explicitly set the location and size");
1535 puts(" of a pane, along with limiting overall maximum value of the");
1536 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1537 puts(" Several modifiers may be applied to the same pane simultaneously.");
1538 puts("");
1539 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1540 puts(" to the upper-left corner of the viewport, in pixels.");
1541 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1542 puts(" to the upper-left corner of the viewport, in pixels.");
1543 puts(" 'w[value]' sets width of the graph pixels.");
1544 puts(" 'h[value]' sets height of the graph in pixels.");
1545 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1546 puts(" If the graph needs to draw values higher than");
1547 puts(" the ceiling allows, the value is clamped.");
1548 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1549 puts(" the Y axis to match the highest value still visible in the graph.");
1550 puts(" 'r' resets the color counter (the next color will be green)");
1551 puts(" 's' sort items below graphs in descending order");
1552 puts("");
1553 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1554 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1555 puts(" still adjusting the value of the Y axis down when appropriate.");
1556 puts("");
1557 puts(" You can change behavior of the whole HUD by adding these options at");
1558 puts(" the beginning of the environment variable:");
1559 puts(" 'simple,' disables all the fancy stuff and only draws text.");
1560 puts("");
1561 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1562 puts("");
1563 puts(" Available names:");
1564 puts(" fps");
1565 puts(" frametime");
1566 puts(" cpu");
1572 puts(" samples-passed");
1574 puts(" primitives-generated");
1577 puts(" ia-vertices");
1578 puts(" ia-primitives");
1579 puts(" vs-invocations");
1580 puts(" gs-invocations");
1581 puts(" gs-primitives");
1582 puts(" clipper-invocations");
1583 puts(" clipper-primitives-generated");
1584 puts(" ps-invocations");
1585 puts(" hs-invocations");
1586 puts(" ds-invocations");
1587 puts(" cs-invocations");
1608 puts(" ...");
1617 puts("");