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

D3D12_QUERY_HEAP_TYPE

列挙型
基底型i4

メンバー 7

名前10進16進
D3D12_QUERY_HEAP_TYPE_OCCLUSION00x0
D3D12_QUERY_HEAP_TYPE_TIMESTAMP10x1
D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS20x2
D3D12_QUERY_HEAP_TYPE_SO_STATISTICS30x3
D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS40x4
D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP50x5
D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS170x7

各言語での定義

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

typedef enum D3D12_QUERY_HEAP_TYPE : int {
    D3D12_QUERY_HEAP_TYPE_OCCLUSION = 0,
    D3D12_QUERY_HEAP_TYPE_TIMESTAMP = 1,
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS = 2,
    D3D12_QUERY_HEAP_TYPE_SO_STATISTICS = 3,
    D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS = 4,
    D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP = 5,
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 = 7
} D3D12_QUERY_HEAP_TYPE;
public enum D3D12_QUERY_HEAP_TYPE : int
{
    D3D12_QUERY_HEAP_TYPE_OCCLUSION = 0,
    D3D12_QUERY_HEAP_TYPE_TIMESTAMP = 1,
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS = 2,
    D3D12_QUERY_HEAP_TYPE_SO_STATISTICS = 3,
    D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS = 4,
    D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP = 5,
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 = 7,
}
Public Enum D3D12_QUERY_HEAP_TYPE As Integer
    D3D12_QUERY_HEAP_TYPE_OCCLUSION = 0
    D3D12_QUERY_HEAP_TYPE_TIMESTAMP = 1
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS = 2
    D3D12_QUERY_HEAP_TYPE_SO_STATISTICS = 3
    D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS = 4
    D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP = 5
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 = 7
End Enum
import enum

class D3D12_QUERY_HEAP_TYPE(enum.IntEnum):
    D3D12_QUERY_HEAP_TYPE_OCCLUSION = 0
    D3D12_QUERY_HEAP_TYPE_TIMESTAMP = 1
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS = 2
    D3D12_QUERY_HEAP_TYPE_SO_STATISTICS = 3
    D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS = 4
    D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP = 5
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 = 7
// D3D12_QUERY_HEAP_TYPE
pub const D3D12_QUERY_HEAP_TYPE_OCCLUSION: i32 = 0;
pub const D3D12_QUERY_HEAP_TYPE_TIMESTAMP: i32 = 1;
pub const D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS: i32 = 2;
pub const D3D12_QUERY_HEAP_TYPE_SO_STATISTICS: i32 = 3;
pub const D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS: i32 = 4;
pub const D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP: i32 = 5;
pub const D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1: i32 = 7;
// D3D12_QUERY_HEAP_TYPE
const (
	D3D12_QUERY_HEAP_TYPE_OCCLUSION int32 = 0
	D3D12_QUERY_HEAP_TYPE_TIMESTAMP int32 = 1
	D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS int32 = 2
	D3D12_QUERY_HEAP_TYPE_SO_STATISTICS int32 = 3
	D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS int32 = 4
	D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP int32 = 5
	D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 int32 = 7
)
const
  D3D12_QUERY_HEAP_TYPE_OCCLUSION = 0;
  D3D12_QUERY_HEAP_TYPE_TIMESTAMP = 1;
  D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS = 2;
  D3D12_QUERY_HEAP_TYPE_SO_STATISTICS = 3;
  D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS = 4;
  D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP = 5;
  D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 = 7;
// D3D12_QUERY_HEAP_TYPE
pub const D3D12_QUERY_HEAP_TYPE_OCCLUSION: i32 = 0;
pub const D3D12_QUERY_HEAP_TYPE_TIMESTAMP: i32 = 1;
pub const D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS: i32 = 2;
pub const D3D12_QUERY_HEAP_TYPE_SO_STATISTICS: i32 = 3;
pub const D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS: i32 = 4;
pub const D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP: i32 = 5;
pub const D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1: i32 = 7;
const
  D3D12_QUERY_HEAP_TYPE_OCCLUSION* = 0
  D3D12_QUERY_HEAP_TYPE_TIMESTAMP* = 1
  D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS* = 2
  D3D12_QUERY_HEAP_TYPE_SO_STATISTICS* = 3
  D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS* = 4
  D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP* = 5
  D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1* = 7
enum D3D12_QUERY_HEAP_TYPE : int {
    D3D12_QUERY_HEAP_TYPE_OCCLUSION = 0,
    D3D12_QUERY_HEAP_TYPE_TIMESTAMP = 1,
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS = 2,
    D3D12_QUERY_HEAP_TYPE_SO_STATISTICS = 3,
    D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS = 4,
    D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP = 5,
    D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1 = 7,
}
#define global D3D12_QUERY_HEAP_TYPE_OCCLUSION               0x0
#define global D3D12_QUERY_HEAP_TYPE_TIMESTAMP               0x1
#define global D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS     0x2
#define global D3D12_QUERY_HEAP_TYPE_SO_STATISTICS           0x3
#define global D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS 0x4
#define global D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP    0x5
#define global D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1    0x7