xtd 0.2.0
Loading...
Searching...
No Matches
pixel_offset_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 {
20 enum class pixel_offset_mode {
22 invalid = -1,
24 default_value = 0,
26 high_speed = 1,
28 high_quality = 2,
30 none = 3,
32 half = 4,
33 };
34 }
35 }
36}
37
41};
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
pixel_offset_mode
Specifies how pixels are offset during rendering.
Definition pixel_offset_mode.h:20
@ high_speed
Specifies high speed, low quality rendering.
@ half
Specifies that pixels are offset by -.5 units, both horizontally and vertically, for high speed antia...
@ high_quality
Specifies high quality, low speed rendering.
@ invalid
Specifies the default 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