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

D3DPOOL

列挙型
基底型i4

メンバー 4

名前10進16進
D3DPOOL_DEFAULT00x0
D3DPOOL_MANAGED10x1
D3DPOOL_SYSTEMMEM20x2
D3DPOOL_SCRATCH30x3

各言語での定義

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

typedef enum D3DPOOL : int {
    D3DPOOL_DEFAULT = 0,
    D3DPOOL_MANAGED = 1,
    D3DPOOL_SYSTEMMEM = 2,
    D3DPOOL_SCRATCH = 3
} D3DPOOL;
public enum D3DPOOL : int
{
    D3DPOOL_DEFAULT = 0,
    D3DPOOL_MANAGED = 1,
    D3DPOOL_SYSTEMMEM = 2,
    D3DPOOL_SCRATCH = 3,
}
Public Enum D3DPOOL As Integer
    D3DPOOL_DEFAULT = 0
    D3DPOOL_MANAGED = 1
    D3DPOOL_SYSTEMMEM = 2
    D3DPOOL_SCRATCH = 3
End Enum
import enum

class D3DPOOL(enum.IntEnum):
    D3DPOOL_DEFAULT = 0
    D3DPOOL_MANAGED = 1
    D3DPOOL_SYSTEMMEM = 2
    D3DPOOL_SCRATCH = 3
// D3DPOOL
pub const D3DPOOL_DEFAULT: i32 = 0;
pub const D3DPOOL_MANAGED: i32 = 1;
pub const D3DPOOL_SYSTEMMEM: i32 = 2;
pub const D3DPOOL_SCRATCH: i32 = 3;
// D3DPOOL
const (
	D3DPOOL_DEFAULT int32 = 0
	D3DPOOL_MANAGED int32 = 1
	D3DPOOL_SYSTEMMEM int32 = 2
	D3DPOOL_SCRATCH int32 = 3
)
const
  D3DPOOL_DEFAULT = 0;
  D3DPOOL_MANAGED = 1;
  D3DPOOL_SYSTEMMEM = 2;
  D3DPOOL_SCRATCH = 3;
// D3DPOOL
pub const D3DPOOL_DEFAULT: i32 = 0;
pub const D3DPOOL_MANAGED: i32 = 1;
pub const D3DPOOL_SYSTEMMEM: i32 = 2;
pub const D3DPOOL_SCRATCH: i32 = 3;
const
  D3DPOOL_DEFAULT* = 0
  D3DPOOL_MANAGED* = 1
  D3DPOOL_SYSTEMMEM* = 2
  D3DPOOL_SCRATCH* = 3
enum D3DPOOL : int {
    D3DPOOL_DEFAULT = 0,
    D3DPOOL_MANAGED = 1,
    D3DPOOL_SYSTEMMEM = 2,
    D3DPOOL_SCRATCH = 3,
}
#define global D3DPOOL_DEFAULT   0x0
#define global D3DPOOL_MANAGED   0x1
#define global D3DPOOL_SYSTEMMEM 0x2
#define global D3DPOOL_SCRATCH   0x3