xtd 0.2.0
pixel_offset_mode.h
Go to the documentation of this file.
1 #pragma once
5 #include "drawing2d.h"
6 #include <xtd/enum>
7 
9 namespace xtd {
11  namespace drawing {
13  namespace drawing_2d {
21  enum class pixel_offset_mode {
23  invalid = -1,
25  default_value = 0,
27  high_speed = 1,
29  high_quality = 2,
31  none = 3,
33  half = 4,
34  };
35  }
36  }
37 }
38 
42 };
Specifies that pixels are offset by -.5 units, both horizontally and vertically, for high speed antia...
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
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
Contains xtd::drawing::drawing_2d/::matrix class.
pixel_offset_mode
Specifies how pixels are offset during rendering.
Definition: pixel_offset_mode.h:21
Provides the registration struct for enumerations.
Definition: enum_register.h:36