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

D3DTEXTUREMIPFILTER

列挙型
基底型i4

メンバー 3

名前10進16進
D3DTFP_NONE10x1
D3DTFP_POINT20x2
D3DTFP_LINEAR30x3

各言語での定義

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

typedef enum D3DTEXTUREMIPFILTER : int {
    D3DTFP_NONE = 1,
    D3DTFP_POINT = 2,
    D3DTFP_LINEAR = 3
} D3DTEXTUREMIPFILTER;
public enum D3DTEXTUREMIPFILTER : int
{
    D3DTFP_NONE = 1,
    D3DTFP_POINT = 2,
    D3DTFP_LINEAR = 3,
}
Public Enum D3DTEXTUREMIPFILTER As Integer
    D3DTFP_NONE = 1
    D3DTFP_POINT = 2
    D3DTFP_LINEAR = 3
End Enum
import enum

class D3DTEXTUREMIPFILTER(enum.IntEnum):
    D3DTFP_NONE = 1
    D3DTFP_POINT = 2
    D3DTFP_LINEAR = 3
// D3DTEXTUREMIPFILTER
pub const D3DTFP_NONE: i32 = 1;
pub const D3DTFP_POINT: i32 = 2;
pub const D3DTFP_LINEAR: i32 = 3;
// D3DTEXTUREMIPFILTER
const (
	D3DTFP_NONE int32 = 1
	D3DTFP_POINT int32 = 2
	D3DTFP_LINEAR int32 = 3
)
const
  D3DTFP_NONE = 1;
  D3DTFP_POINT = 2;
  D3DTFP_LINEAR = 3;
// D3DTEXTUREMIPFILTER
pub const D3DTFP_NONE: i32 = 1;
pub const D3DTFP_POINT: i32 = 2;
pub const D3DTFP_LINEAR: i32 = 3;
const
  D3DTFP_NONE* = 1
  D3DTFP_POINT* = 2
  D3DTFP_LINEAR* = 3
enum D3DTEXTUREMIPFILTER : int {
    D3DTFP_NONE = 1,
    D3DTFP_POINT = 2,
    D3DTFP_LINEAR = 3,
}
#define global D3DTFP_NONE   0x1
#define global D3DTFP_POINT  0x2
#define global D3DTFP_LINEAR 0x3