1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkOpenXRManagerD3DGraphics.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkOpenXRManagerD3DGraphics
* @brief OpenXR manager D3D graphics implementation
*
* Allow vtkOpenXRManager to use a D3D rendering backend.
*/
#ifndef vtkOpenXRManagerD3DGraphics_h
#define vtkOpenXRManagerD3DGraphics_h
#include "vtkOpenXRManagerGraphics.h"
#include "vtkRenderingOpenXRRemotingModule.h" // For export macro
#include "vtkOpenXR.h" // For extension name
#include <memory> // For shared_ptr
#include <vector> // For std::vector
struct XrGraphicsBindingD3D11KHR;
struct XrSwapchainImageD3D11KHR;
VTK_ABI_NAMESPACE_BEGIN
class VTKRENDERINGOPENXRREMOTING_EXPORT vtkOpenXRManagerD3DGraphics
: public vtkOpenXRManagerGraphics
{
public:
static vtkOpenXRManagerD3DGraphics* New();
vtkTypeMacro(vtkOpenXRManagerD3DGraphics, vtkOpenXRManagerGraphics);
/**
* Resize the internal vectors storing the color and depth swapchains.
*/
void SetNumberOfSwapchains(uint32_t viewCount) override;
///@{
/**
* Fill \p texture with the D3D Texture2D for the specified eye \p scIndex.
* The image index \p imgIndex should be obtained beforehand using xrAcquireSwapchainImage.
*/
void GetColorSwapchainImage(uint32_t scIndex, uint32_t imgIndex, void* texture) override;
void GetDepthSwapchainImage(uint32_t scIndex, uint32_t imgIndex, void* texture) override;
///@}
///@{
/**
* Acquire D3D swapchain images for the specified eye index.
*/
void EnumerateColorSwapchainImages(XrSwapchain swapchain, uint32_t scIndex) override;
void EnumerateDepthSwapchainImages(XrSwapchain swapchain, uint32_t scIndex) override;
///@}
///@{
/**
* Return the list of DXGI_FORMAT supported by vtkWin32OpenGLDXRenderWindow.
* The first in the list that is also supported by the runtime is picked.
*/
const std::vector<int64_t>& GetSupportedColorFormats() override;
const std::vector<int64_t>& GetSupportedDepthFormats() override;
///@}
/**
* Fill the pointer to the XrGraphicsBindingD3D11 structure.
*/
bool CreateGraphicsBinding(vtkOpenGLRenderWindow* helperWindow) override;
/**
* Return pointer to the XrGraphicsBindingD3D11 structure required to create the OpenXR session.
*/
const void* GetGraphicsBinding() override { return this->GraphicsBinding.get(); };
/**
* Verify that the D3D feature levels supported by the runtime match the ones supported by
* vtkWin32OpenGLDXRenderWindow.
*/
bool CheckGraphicsRequirements(XrInstance instance, XrSystemId id) override;
/**
* Return the extension name corresponding to the D3D11 rendering backend
*/
const char* GetBackendExtensionName() override;
protected:
vtkOpenXRManagerD3DGraphics();
~vtkOpenXRManagerD3DGraphics() override;
/**
* D3D structure to store swapchain images.
*/
struct SwapchainImagesD3D
{
std::vector<XrSwapchainImageD3D11KHR> Images;
};
/**
* Acquire D3D swapchain images an store them in \p swapchainImages.
*/
void EnumerateSwapchainImages(XrSwapchain swapchain, SwapchainImagesD3D& swapchainImages);
std::shared_ptr<XrGraphicsBindingD3D11KHR> GraphicsBinding;
private:
vtkOpenXRManagerD3DGraphics(const vtkOpenXRManagerD3DGraphics&) = delete;
void operator=(const vtkOpenXRManagerD3DGraphics&) = delete;
class PIMPL;
PIMPL* Private;
};
VTK_ABI_NAMESPACE_END
#endif
|