ホーム › Graphics.Dxgi › DXGI_PRESENT_PARAMETERS
DXGI_PRESENT_PARAMETERS
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| DirtyRectsCount | DWORD | 4 | +0 | +0 | 更新領域(ダーティ矩形)の個数。 |
| pDirtyRects | RECT* | 8/4 | +8 | +4 | 更新が必要な矩形領域の配列へのポインタ。NULL可。 |
| pScrollRect | RECT* | 8/4 | +16 | +8 | スクロールする矩形領域へのポインタ。NULL可。 |
| pScrollOffset | POINT* | 8/4 | +24 | +12 | スクロールのオフセット量を表す点へのポインタ。NULL可。 |
各言語での定義
#include <windows.h>
// DXGI_PRESENT_PARAMETERS (x64 32 / x86 16 バイト)
typedef struct DXGI_PRESENT_PARAMETERS {
DWORD DirtyRectsCount;
RECT* pDirtyRects;
RECT* pScrollRect;
POINT* pScrollOffset;
} DXGI_PRESENT_PARAMETERS;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct DXGI_PRESENT_PARAMETERS
{
public uint DirtyRectsCount;
public IntPtr pDirtyRects;
public IntPtr pScrollRect;
public IntPtr pScrollOffset;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure DXGI_PRESENT_PARAMETERS
Public DirtyRectsCount As UInteger
Public pDirtyRects As IntPtr
Public pScrollRect As IntPtr
Public pScrollOffset As IntPtr
End Structureimport ctypes
from ctypes import wintypes
class DXGI_PRESENT_PARAMETERS(ctypes.Structure):
_fields_ = [
("DirtyRectsCount", wintypes.DWORD),
("pDirtyRects", ctypes.c_void_p),
("pScrollRect", ctypes.c_void_p),
("pScrollOffset", ctypes.c_void_p),
]#[repr(C)]
pub struct DXGI_PRESENT_PARAMETERS {
pub DirtyRectsCount: u32,
pub pDirtyRects: *mut core::ffi::c_void,
pub pScrollRect: *mut core::ffi::c_void,
pub pScrollOffset: *mut core::ffi::c_void,
}import "golang.org/x/sys/windows"
type DXGI_PRESENT_PARAMETERS struct {
DirtyRectsCount uint32
pDirtyRects uintptr
pScrollRect uintptr
pScrollOffset uintptr
}type
DXGI_PRESENT_PARAMETERS = record
DirtyRectsCount: DWORD;
pDirtyRects: Pointer;
pScrollRect: Pointer;
pScrollOffset: Pointer;
end;const DXGI_PRESENT_PARAMETERS = extern struct {
DirtyRectsCount: u32,
pDirtyRects: ?*anyopaque,
pScrollRect: ?*anyopaque,
pScrollOffset: ?*anyopaque,
};type
DXGI_PRESENT_PARAMETERS {.bycopy.} = object
DirtyRectsCount: uint32
pDirtyRects: pointer
pScrollRect: pointer
pScrollOffset: pointerstruct DXGI_PRESENT_PARAMETERS
{
uint DirtyRectsCount;
void* pDirtyRects;
void* pScrollRect;
void* pScrollOffset;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x86 レイアウト)
; DXGI_PRESENT_PARAMETERS サイズ: 16 バイト(x86)
dim st, 4 ; 4byte整数×4(構造体サイズ 16 / 4 切り上げ)
; DirtyRectsCount : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; pDirtyRects : RECT* (+4, 4byte) varptr(st)+4 を基点に操作(4byte:入れ子/配列)
; pScrollRect : RECT* (+8, 4byte) varptr(st)+8 を基点に操作(4byte:入れ子/配列)
; pScrollOffset : POINT* (+12, 4byte) varptr(st)+12 を基点に操作(4byte:入れ子/配列)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; DXGI_PRESENT_PARAMETERS サイズ: 32 バイト(x64)
dim st, 8 ; 4byte整数×8(構造体サイズ 32 / 4 切り上げ)
; DirtyRectsCount : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; pDirtyRects : RECT* (+8, 8byte) varptr(st)+8 を基点に操作(8byte:入れ子/配列)
; pScrollRect : RECT* (+16, 8byte) varptr(st)+16 を基点に操作(8byte:入れ子/配列)
; pScrollOffset : POINT* (+24, 8byte) varptr(st)+24 を基点に操作(8byte:入れ子/配列)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global DXGI_PRESENT_PARAMETERS
#field int DirtyRectsCount
#field intptr pDirtyRects
#field intptr pScrollRect
#field intptr pScrollOffset
#endstruct
stdim st, DXGI_PRESENT_PARAMETERS ; NSTRUCT 変数を確保
st->DirtyRectsCount = 100
mes "DirtyRectsCount=" + st->DirtyRectsCount