Skip to content

Commit 7ec84e7

Browse files
Added OpenXRAttribsSize member to APIInfo struct (API256002)
1 parent f082827 commit 7ec84e7

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

Graphics/GraphicsEngine/interface/APIInfo.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/// \file
3131
/// Diligent API information
3232

33-
#define DILIGENT_API_VERSION 256001
33+
#define DILIGENT_API_VERSION 256002
3434

3535
#include "../../../Primitives/interface/BasicTypes.h"
3636

@@ -62,6 +62,7 @@ struct APIInfo
6262
size_t DisplayModeAttribsSize DEFAULT_INITIALIZER(0);
6363
size_t SwapChainDescSize DEFAULT_INITIALIZER(0);
6464
size_t FullScreenModeDescSize DEFAULT_INITIALIZER(0);
65+
size_t OpenXRAttribsSize DEFAULT_INITIALIZER(0);
6566
size_t EngineCreateInfoSize DEFAULT_INITIALIZER(0);
6667
size_t EngineGLCreateInfoSize DEFAULT_INITIALIZER(0);
6768
size_t EngineD3D11CreateInfoSize DEFAULT_INITIALIZER(0);

Graphics/GraphicsEngine/src/APIInfo.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ static APIInfo InitAPIInfo()
7272
INIT_STRUCTURE_SIZE(DisplayModeAttribs);
7373
INIT_STRUCTURE_SIZE(SwapChainDesc);
7474
INIT_STRUCTURE_SIZE(FullScreenModeDesc);
75+
INIT_STRUCTURE_SIZE(OpenXRAttribs);
7576
INIT_STRUCTURE_SIZE(EngineCreateInfo);
7677
INIT_STRUCTURE_SIZE(EngineGLCreateInfo);
7778
INIT_STRUCTURE_SIZE(EngineD3D11CreateInfo);

ReleaseHistory.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## Current progress
22

3+
* Added `OpenXRAttribsSize` member to `APIInfo` struct (API256002)
34
* Enabled OpenXR (API256001)
45
* Added `OpenXRAttribs` struct and `pXRAttribs` member to `EngineCreateInfo` struct
56
* Added `NativeGLContextAttribsWin32` and `NativeGLContextAttribsAndroid` structs and

0 commit comments

Comments
 (0)