Skip to content

Commit

Permalink
Added OpenXRAttribsSize member to APIInfo struct (API256002)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMostDiligent committed Dec 16, 2024
1 parent f082827 commit 7ec84e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Graphics/GraphicsEngine/interface/APIInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/// \file
/// Diligent API information

#define DILIGENT_API_VERSION 256001
#define DILIGENT_API_VERSION 256002

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

Expand Down Expand Up @@ -62,6 +62,7 @@ struct APIInfo
size_t DisplayModeAttribsSize DEFAULT_INITIALIZER(0);
size_t SwapChainDescSize DEFAULT_INITIALIZER(0);
size_t FullScreenModeDescSize DEFAULT_INITIALIZER(0);
size_t OpenXRAttribsSize DEFAULT_INITIALIZER(0);
size_t EngineCreateInfoSize DEFAULT_INITIALIZER(0);
size_t EngineGLCreateInfoSize DEFAULT_INITIALIZER(0);
size_t EngineD3D11CreateInfoSize DEFAULT_INITIALIZER(0);
Expand Down
1 change: 1 addition & 0 deletions Graphics/GraphicsEngine/src/APIInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ static APIInfo InitAPIInfo()
INIT_STRUCTURE_SIZE(DisplayModeAttribs);
INIT_STRUCTURE_SIZE(SwapChainDesc);
INIT_STRUCTURE_SIZE(FullScreenModeDesc);
INIT_STRUCTURE_SIZE(OpenXRAttribs);
INIT_STRUCTURE_SIZE(EngineCreateInfo);
INIT_STRUCTURE_SIZE(EngineGLCreateInfo);
INIT_STRUCTURE_SIZE(EngineD3D11CreateInfo);
Expand Down
1 change: 1 addition & 0 deletions ReleaseHistory.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Current progress

* Added `OpenXRAttribsSize` member to `APIInfo` struct (API256002)
* Enabled OpenXR (API256001)
* Added `OpenXRAttribs` struct and `pXRAttribs` member to `EngineCreateInfo` struct
* Added `NativeGLContextAttribsWin32` and `NativeGLContextAttribsAndroid` structs and
Expand Down

0 comments on commit 7ec84e7

Please sign in to comment.