xtd 0.2.0
Loading...
Searching...
No Matches
smoothing_mode.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace drawing {
12 namespace drawing_2d {
23 enum class smoothing_mode {
25 invalid = -1,
27 default_value = 0,
29 high_speed = 1,
31 high_quality = 2,
33 none = 3,
35 anti_alias = 4,
36 };
37 }
38 }
39}
40
44};
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
smoothing_mode
Specifies whether smoothing (antialiasing) is applied to lines and curves and the edges of filled are...
Definition smoothing_mode.h:23
@ high_speed
Specifies high speed, low quality rendering.
@ none
Specifies no pixel offset.
@ default_value
Specifies default mode.
@ high_quality
Specifies high quality, low speed rendering.
@ anti_alias
Specifies that pixels are offset by -.5 units, both horizontally and vertically, for high speed antia...
@ invalid
Specifies an invalid mode.
@ high_quality
High quality, low speed compositing.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36