ホーム › Media.Audio.XAudio2 › HrtfEnvironment
HrtfEnvironment
列挙型メンバー 4
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| Small | 0 | 0x0 | 狭い部屋。 |
| Medium | 1 | 0x1 | 中程度の広さの部屋。 |
| Large | 2 | 0x2 | 広く囲まれた空間。 |
| Outdoors | 3 | 0x3 | 屋外の空間。 |
公式ドキュメント
複数の既定の環境タイプのうちの 1 つを示します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum HrtfEnvironment : int {
Small = 0,
Medium = 1,
Large = 2,
Outdoors = 3
} HrtfEnvironment;public enum HrtfEnvironment : int
{
Small = 0,
Medium = 1,
Large = 2,
Outdoors = 3,
}Public Enum HrtfEnvironment As Integer
Small = 0
Medium = 1
Large = 2
Outdoors = 3
End Enumimport enum
class HrtfEnvironment(enum.IntEnum):
Small = 0
Medium = 1
Large = 2
Outdoors = 3// HrtfEnvironment
pub const Small: i32 = 0;
pub const Medium: i32 = 1;
pub const Large: i32 = 2;
pub const Outdoors: i32 = 3;// HrtfEnvironment
const (
Small int32 = 0
Medium int32 = 1
Large int32 = 2
Outdoors int32 = 3
)const
Small = 0;
Medium = 1;
Large = 2;
Outdoors = 3;// HrtfEnvironment
pub const Small: i32 = 0;
pub const Medium: i32 = 1;
pub const Large: i32 = 2;
pub const Outdoors: i32 = 3;const
Small* = 0
Medium* = 1
Large* = 2
Outdoors* = 3enum HrtfEnvironment : int {
Small = 0,
Medium = 1,
Large = 2,
Outdoors = 3,
}#define global Small 0x0
#define global Medium 0x1
#define global Large 0x2
#define global Outdoors 0x3