FastUIDraw
|
Class to encapsulate enumerations used in Painter interface, part of the main library libFastUIDraw. More...
#include <painter_enums.hpp>
Static Public Member Functions | |
static enum fill_rule_t | complement_fill_rule (enum fill_rule_t f) |
static bool | is_miter_join (enum join_style js) |
static c_string | label (enum screen_orientation v) |
static c_string | label (enum rotation_orientation_t v) |
static c_string | label (enum glyph_layout_type v) |
static c_string | label (enum cap_style v) |
static c_string | label (enum join_style v) |
static c_string | label (enum fill_rule_t v) |
static c_string | label (enum stroking_method_t v) |
static c_string | label (enum blend_mode_t v) |
static c_string | label (enum query_stats_t v) |
Class to encapsulate enumerations used in Painter interface, part of the main library libFastUIDraw.
Definition at line 177 of file painter_enums.hpp.
Enumeration specifying blend modes. The following function-formulas are used in a number of the blend modes:
The next set of functions are a little messier and written in GLSL
Definition at line 393 of file painter_enums.hpp.
Enumeration specifying if and how to draw caps when stroking.
Definition at line 234 of file painter_enums.hpp.
Enumerations specifying common fill rules.
Definition at line 291 of file painter_enums.hpp.
Enumeration to indicate if glyph layout is horizontal or vertical.
Enumerator | |
---|---|
glyph_layout_horizontal | Glyphs are layed out horizontally, thus will use GlyphMetrics::horizontal_layout_offset() to offset the glyphs. |
glyph_layout_vertical | Glyphs are layed out vertically, thus will use GlyphMetrics::vertical_layout_offset() to offset the glyphs. |
Definition at line 211 of file painter_enums.hpp.
Enumeration specifying if and how to draw joins when stroking.
Definition at line 247 of file painter_enums.hpp.
Enumeration to query the statistics of how much data has been packed.
Enumerator | |
---|---|
num_attributes | Offset to how many attributes processed |
num_indices | Offset to how many indices processed |
num_datas | Offset to how many uvec4 values placed onto store buffer(s). |
num_draws | Offset to how many PainterDraw objects sent |
num_headers | Offset to how many painter headers packed. |
num_render_targets | Number of distinct render targets needed. |
num_ends | Number of times PainterBackend::end() was called |
num_layers | Number of begin_layer()/end_layer() pairs called |
num_deferred_coverages | Number of begin_coverage_buffer()/end_coverage_buffer() pairs called |
Definition at line 783 of file painter_enums.hpp.
Enumeration to specify orientation of a rotation.
Enumerator | |
---|---|
clockwise | indicates clockwise |
counter_clockwise | indicates counter-clockwise |
Definition at line 198 of file painter_enums.hpp.
Enumeration to indicate in what direction the y-coordinate increases.
Enumerator | |
---|---|
y_increases_downwards | y-coordinate increases downwards |
y_increases_upwards | y-coordinate increases upwards |
Definition at line 186 of file painter_enums.hpp.
Enumeration to specify how to stroke
Enumerator | |
---|---|
stroking_method_linear | Use linear stroking taken directly from the Path. Thus the passed StrokedPath only consists of line segments. |
stroking_method_arc | Use arc-stroking, i.e. the passed StrokedPath has both arc-segments and line segments. This results in fewer vertices with the fragment shader computing per-pixel coverage. |
stroking_method_fastest | Choose for optimal performance. |
number_stroking_methods | Number of stroking enums present. |
Definition at line 304 of file painter_enums.hpp.
|
static |
Given a fill rule, return the fill rule for the complement.
|
inlinestatic |
Returns true if a join_style is a miter-type join, i.e. one of miter_clip_joins, miter_bevel_joins or miter_joins.
js | join style to query |
Definition at line 848 of file painter_enums.hpp.
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |
|
static |
Returns a c_string for an enumerated value.
v | value to get the label-string of. |