Win32 API 日本語リファレンス
ホームGraphics.Direct2D › D2D1_COLOR_SPACE

D2D1_COLOR_SPACE

列挙型
基底型i4

メンバー 3

名前10進16進
D2D1_COLOR_SPACE_CUSTOM00x0
D2D1_COLOR_SPACE_SRGB10x1
D2D1_COLOR_SPACE_SCRGB20x2

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum D2D1_COLOR_SPACE : int {
    D2D1_COLOR_SPACE_CUSTOM = 0,
    D2D1_COLOR_SPACE_SRGB = 1,
    D2D1_COLOR_SPACE_SCRGB = 2
} D2D1_COLOR_SPACE;
public enum D2D1_COLOR_SPACE : int
{
    D2D1_COLOR_SPACE_CUSTOM = 0,
    D2D1_COLOR_SPACE_SRGB = 1,
    D2D1_COLOR_SPACE_SCRGB = 2,
}
Public Enum D2D1_COLOR_SPACE As Integer
    D2D1_COLOR_SPACE_CUSTOM = 0
    D2D1_COLOR_SPACE_SRGB = 1
    D2D1_COLOR_SPACE_SCRGB = 2
End Enum
import enum

class D2D1_COLOR_SPACE(enum.IntEnum):
    D2D1_COLOR_SPACE_CUSTOM = 0
    D2D1_COLOR_SPACE_SRGB = 1
    D2D1_COLOR_SPACE_SCRGB = 2
// D2D1_COLOR_SPACE
pub const D2D1_COLOR_SPACE_CUSTOM: i32 = 0;
pub const D2D1_COLOR_SPACE_SRGB: i32 = 1;
pub const D2D1_COLOR_SPACE_SCRGB: i32 = 2;
// D2D1_COLOR_SPACE
const (
	D2D1_COLOR_SPACE_CUSTOM int32 = 0
	D2D1_COLOR_SPACE_SRGB int32 = 1
	D2D1_COLOR_SPACE_SCRGB int32 = 2
)
const
  D2D1_COLOR_SPACE_CUSTOM = 0;
  D2D1_COLOR_SPACE_SRGB = 1;
  D2D1_COLOR_SPACE_SCRGB = 2;
// D2D1_COLOR_SPACE
pub const D2D1_COLOR_SPACE_CUSTOM: i32 = 0;
pub const D2D1_COLOR_SPACE_SRGB: i32 = 1;
pub const D2D1_COLOR_SPACE_SCRGB: i32 = 2;
const
  D2D1_COLOR_SPACE_CUSTOM* = 0
  D2D1_COLOR_SPACE_SRGB* = 1
  D2D1_COLOR_SPACE_SCRGB* = 2
enum D2D1_COLOR_SPACE : int {
    D2D1_COLOR_SPACE_CUSTOM = 0,
    D2D1_COLOR_SPACE_SRGB = 1,
    D2D1_COLOR_SPACE_SCRGB = 2,
}
#define global D2D1_COLOR_SPACE_CUSTOM 0x0
#define global D2D1_COLOR_SPACE_SRGB   0x1
#define global D2D1_COLOR_SPACE_SCRGB  0x2