mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-27 23:25:50 +03:00
e9aeba85f2
CW-Bug-Id: #22729
1345 lines
58 KiB
C
1345 lines
58 KiB
C
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
|
|
#define COBJMACROS
|
|
#include "d3d11_4.h"
|
|
#include "dxvk-interop.h"
|
|
#include "vrclient_private.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(vrclient);
|
|
|
|
struct submit_state
|
|
{
|
|
w_Texture_t texture;
|
|
w_VRVulkanTextureArrayData_t vkdata;
|
|
VkImageLayout image_layout;
|
|
VkImageSubresourceRange subresources;
|
|
IDXGIVkInteropSurface *dxvk_surface;
|
|
IDXGIVkInteropDevice *dxvk_device;
|
|
};
|
|
|
|
static const w_Texture_t *load_compositor_texture_dxvk( uint32_t eye, const w_Texture_t *texture, uint32_t *flags,
|
|
struct submit_state *state )
|
|
{
|
|
static const uint32_t supported_flags = Submit_LensDistortionAlreadyApplied | Submit_FrameDiscontinuty;
|
|
w_VRVulkanTextureData_t vkdata;
|
|
VkImageCreateInfo image_info;
|
|
IUnknown *texture_iface;
|
|
|
|
TRACE( "texture = %p\n", texture );
|
|
|
|
if (!(texture_iface = texture->handle))
|
|
{
|
|
WARN( "No D3D11 texture %p.\n", texture );
|
|
return texture;
|
|
}
|
|
|
|
if (FAILED(texture_iface->lpVtbl->QueryInterface( texture_iface, &IID_IDXGIVkInteropSurface,
|
|
(void **)&state->dxvk_surface )))
|
|
{
|
|
WARN( "Invalid D3D11 texture %p.\n", texture );
|
|
return texture;
|
|
}
|
|
|
|
state->texture = vrclient_translate_texture_dxvk( texture, &vkdata, state->dxvk_surface, &state->dxvk_device,
|
|
&state->image_layout, &image_info );
|
|
state->vkdata.m_nImage = vkdata.m_nImage;
|
|
state->vkdata.m_pDevice = vkdata.m_pDevice;
|
|
state->vkdata.m_pPhysicalDevice = vkdata.m_pPhysicalDevice;
|
|
state->vkdata.m_pInstance = vkdata.m_pInstance;
|
|
state->vkdata.m_pQueue = vkdata.m_pQueue;
|
|
state->vkdata.m_nQueueFamilyIndex = vkdata.m_nQueueFamilyIndex;
|
|
state->vkdata.m_nWidth = vkdata.m_nWidth;
|
|
state->vkdata.m_nHeight = vkdata.m_nHeight;
|
|
state->vkdata.m_nFormat = vkdata.m_nFormat;
|
|
state->vkdata.m_nSampleCount = vkdata.m_nSampleCount;
|
|
state->texture.handle = &state->vkdata;
|
|
|
|
compositor_data.dxvk_device = state->dxvk_device;
|
|
|
|
if (*flags & ~supported_flags) FIXME( "Unhandled flags %#x.\n", *flags );
|
|
|
|
if (image_info.arrayLayers > 1)
|
|
{
|
|
state->vkdata.m_unArrayIndex = eye;
|
|
state->vkdata.m_unArraySize = image_info.arrayLayers;
|
|
*flags = *flags | Submit_VulkanTextureWithArrayData;
|
|
}
|
|
|
|
state->subresources.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
|
|
state->subresources.baseMipLevel = 0;
|
|
state->subresources.levelCount = image_info.mipLevels;
|
|
state->subresources.baseArrayLayer = 0;
|
|
state->subresources.layerCount = image_info.arrayLayers;
|
|
|
|
state->dxvk_device->lpVtbl->TransitionSurfaceLayout( state->dxvk_device, state->dxvk_surface, &state->subresources,
|
|
state->image_layout, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL );
|
|
state->dxvk_device->lpVtbl->FlushRenderingCommands( state->dxvk_device );
|
|
state->dxvk_device->lpVtbl->LockSubmissionQueue( state->dxvk_device );
|
|
|
|
return &state->texture;
|
|
}
|
|
|
|
static void free_compositor_texture_dxvk( struct submit_state *state )
|
|
{
|
|
if (!state->dxvk_device) return;
|
|
|
|
state->dxvk_device->lpVtbl->ReleaseSubmissionQueue( state->dxvk_device );
|
|
state->dxvk_device->lpVtbl->TransitionSurfaceLayout( state->dxvk_device, state->dxvk_surface, &state->subresources,
|
|
VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, state->image_layout );
|
|
state->dxvk_device->lpVtbl->Release( state->dxvk_device );
|
|
state->dxvk_surface->lpVtbl->Release( state->dxvk_surface );
|
|
}
|
|
|
|
struct set_skybox_override_state
|
|
{
|
|
w_Texture_t textures[6];
|
|
w_VRVulkanTextureData_t vkdata[6];
|
|
};
|
|
|
|
static const w_Texture_t *set_skybox_override_d3d11_init( const w_Texture_t *textures, uint32_t count, struct set_skybox_override_state *state )
|
|
{
|
|
IDXGIVkInteropSurface *dxvk_surface;
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < count; ++i)
|
|
{
|
|
const w_Texture_t *texture = &textures[i];
|
|
VkImageSubresourceRange subresources;
|
|
IDXGIVkInteropDevice *dxvk_device;
|
|
VkImageCreateInfo image_info;
|
|
VkImageLayout image_layout;
|
|
IUnknown *texture_iface;
|
|
|
|
if (!texture->handle)
|
|
{
|
|
ERR( "No D3D11 texture %p.\n", texture );
|
|
return textures;
|
|
}
|
|
if (textures[i].eType != TextureType_DirectX)
|
|
{
|
|
FIXME( "Mixing texture types is not supported.\n" );
|
|
return textures;
|
|
}
|
|
|
|
texture_iface = texture->handle;
|
|
|
|
if (FAILED(texture_iface->lpVtbl->QueryInterface( texture_iface, &IID_IDXGIVkInteropSurface,
|
|
(void **)&dxvk_surface )))
|
|
{
|
|
FIXME( "Unsupported d3d11 texture %p, i %u.\n", texture, i );
|
|
return textures;
|
|
}
|
|
|
|
state->textures[i] = vrclient_translate_texture_dxvk( texture, &state->vkdata[i], dxvk_surface,
|
|
&dxvk_device, &image_layout, &image_info );
|
|
if (compositor_data.dxvk_device && dxvk_device != compositor_data.dxvk_device)
|
|
{
|
|
ERR( "Invalid dxvk_device %p, previous %p.\n", dxvk_device, compositor_data.dxvk_device );
|
|
dxvk_surface->lpVtbl->Release( dxvk_surface );
|
|
dxvk_device->lpVtbl->Release( dxvk_device );
|
|
return textures;
|
|
}
|
|
|
|
compositor_data.dxvk_device = dxvk_device;
|
|
|
|
subresources.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
|
|
subresources.baseMipLevel = 0;
|
|
subresources.levelCount = image_info.mipLevels;
|
|
subresources.baseArrayLayer = 0;
|
|
subresources.layerCount = image_info.arrayLayers;
|
|
|
|
dxvk_device->lpVtbl->TransitionSurfaceLayout( dxvk_device, dxvk_surface, &subresources, image_layout,
|
|
VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL );
|
|
|
|
dxvk_surface->lpVtbl->Release( dxvk_surface );
|
|
dxvk_device->lpVtbl->Release( dxvk_device );
|
|
}
|
|
|
|
compositor_data.dxvk_device->lpVtbl->FlushRenderingCommands( compositor_data.dxvk_device );
|
|
compositor_data.dxvk_device->lpVtbl->LockSubmissionQueue( compositor_data.dxvk_device );
|
|
|
|
return state->textures;
|
|
}
|
|
|
|
static const w_Texture_t *set_skybox_override_init( const w_Texture_t *textures, uint32_t count, struct set_skybox_override_state *state )
|
|
{
|
|
if (!count || count > 6)
|
|
{
|
|
WARN( "Invalid texture count %u.\n", count );
|
|
return textures;
|
|
}
|
|
|
|
if (textures[0].eType == TextureType_DirectX)
|
|
return set_skybox_override_d3d11_init( textures, count, state );
|
|
|
|
FIXME( "Conversion for type %u is not supported.\n", textures[0].eType );
|
|
return textures;
|
|
}
|
|
|
|
static void set_skybox_override_done( const w_Texture_t *textures, uint32_t count )
|
|
{
|
|
if (!count || count > 6) return;
|
|
while (count--) if (!textures[count].handle || textures[count].eType != TextureType_DirectX) return;
|
|
compositor_data.dxvk_device->lpVtbl->ReleaseSubmissionQueue( compositor_data.dxvk_device );
|
|
}
|
|
|
|
static void post_present_handoff_init( void *linux_side, unsigned int version )
|
|
{
|
|
if (!compositor_data.dxvk_device) return;
|
|
compositor_data.dxvk_device->lpVtbl->LockSubmissionQueue( compositor_data.dxvk_device );
|
|
}
|
|
|
|
static void post_present_handoff_done(void)
|
|
{
|
|
compositor_data.handoff_called = TRUE;
|
|
if (!compositor_data.dxvk_device) return;
|
|
compositor_data.dxvk_device->lpVtbl->ReleaseSubmissionQueue( compositor_data.dxvk_device );
|
|
}
|
|
|
|
static void wait_get_poses_init( void *linux_side )
|
|
{
|
|
if (!compositor_data.dxvk_device) return;
|
|
compositor_data.dxvk_device->lpVtbl->LockSubmissionQueue( compositor_data.dxvk_device );
|
|
}
|
|
|
|
static void wait_get_poses_done( void *linux_side )
|
|
{
|
|
if (!compositor_data.dxvk_device) return;
|
|
compositor_data.dxvk_device->lpVtbl->ReleaseSubmissionQueue( compositor_data.dxvk_device );
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_009_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_009_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_009_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_009_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_009_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 9 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_009_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_009_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_009_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_009_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_010_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_010_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_010_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_010_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_010_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 10 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_010_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_010_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_010_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_010_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_011_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_011_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_011_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_011_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_011_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 11 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_011_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_011_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_011_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_011_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_012_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_012_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_012_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_012_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_012_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 12 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_012_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_012_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_012_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_012_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_013_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_013_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_013_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_013_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_013_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 13 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_013_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_013_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_013_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_013_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_014_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_014_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_014_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_014_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_014_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 14 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_014_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_014_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_014_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_014_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_015_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_015_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_015_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_015_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_015_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 15 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_015_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_015_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_015_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_015_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_016_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_016_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_016_WaitGetPoses, ¶ms );
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_016_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_016_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_016_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_016_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_016_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 16 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_016_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_016_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_016_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_016_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_017_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_017_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_017_WaitGetPoses, ¶ms );
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_017_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_017_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_017_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_017_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_017_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 17 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_017_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_017_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_017_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_017_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_018_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_018_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_018_WaitGetPoses, ¶ms );
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_018_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_018_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_018_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_018_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_018_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 18 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_018_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_018_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_018_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_018_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_019_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_019_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_019_WaitGetPoses, ¶ms );
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_019_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_019_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_019_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_019_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_019_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 19 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_019_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_019_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_019_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_019_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_020_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_020_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_020_WaitGetPoses, ¶ms );
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_020_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_020_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_020_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_020_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_020_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 20 );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_020_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_020_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_020_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_020_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_021_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_021_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff && !compositor_data.handoff_called)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_021_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
/* Calling handoff after submit is optional for d3d11 but mandatory for Vulkan
|
|
* if explicit timing mode is set. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_021_PostPresentHandoff, ¶ms );
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_021_WaitGetPoses, ¶ms );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_021_SubmitExplicitTimingData_params params = {.linux_side = _this->u_iface};
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_021_SubmitExplicitTimingData, ¶ms );
|
|
}
|
|
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_021_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_021_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_021_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_021_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_021_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 21 );
|
|
|
|
if (compositor_data.dxvk_device && !compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_021_SetExplicitTimingMode_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.bExplicitTimingMode = TRUE,
|
|
};
|
|
|
|
/* PostPresentHandoff can be used with d3d11 without SetExplicitTimingMode
|
|
* (which is Vulkan / d3d12 only), but doing the same with Vulkan results
|
|
* in lockups and crashes. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_021_SetExplicitTimingMode, ¶ms );
|
|
compositor_data.d3d11_explicit_handoff = TRUE;
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_021_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_021_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_021_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_021_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_022_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_022_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff && !compositor_data.handoff_called)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_022_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
/* Calling handoff after submit is optional for d3d11 but mandatory for Vulkan
|
|
* if explicit timing mode is set. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_022_PostPresentHandoff, ¶ms );
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_022_WaitGetPoses, ¶ms );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_022_SubmitExplicitTimingData_params params = {.linux_side = _this->u_iface};
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_022_SubmitExplicitTimingData, ¶ms );
|
|
}
|
|
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_022_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_022_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_022_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_022_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_022_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 22 );
|
|
|
|
if (compositor_data.dxvk_device && !compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_022_SetExplicitTimingMode_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eTimingMode = VRCompositorTimingMode_Explicit_ApplicationPerformsPostPresentHandoff,
|
|
};
|
|
|
|
/* PostPresentHandoff can be used with d3d11 without SetExplicitTimingMode
|
|
* (which is Vulkan / d3d12 only), but doing the same with Vulkan results
|
|
* in lockups and crashes. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_022_SetExplicitTimingMode, ¶ms );
|
|
compositor_data.d3d11_explicit_handoff = TRUE;
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_022_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_022_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_022_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_022_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_024_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_024_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff && !compositor_data.handoff_called)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_024_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
/* Calling handoff after submit is optional for d3d11 but mandatory for Vulkan
|
|
* if explicit timing mode is set. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_024_PostPresentHandoff, ¶ms );
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_024_WaitGetPoses, ¶ms );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_024_SubmitExplicitTimingData_params params = {.linux_side = _this->u_iface};
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_024_SubmitExplicitTimingData, ¶ms );
|
|
}
|
|
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_024_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_024_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_024_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_024_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_024_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 24 );
|
|
|
|
if (compositor_data.dxvk_device && !compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_024_SetExplicitTimingMode_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eTimingMode = VRCompositorTimingMode_Explicit_ApplicationPerformsPostPresentHandoff,
|
|
};
|
|
|
|
/* PostPresentHandoff can be used with d3d11 without SetExplicitTimingMode
|
|
* (which is Vulkan / d3d12 only), but doing the same with Vulkan results
|
|
* in lockups and crashes. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_024_SetExplicitTimingMode, ¶ms );
|
|
compositor_data.d3d11_explicit_handoff = TRUE;
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_024_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_024_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_024_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_024_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_026_WaitGetPoses( struct w_steam_iface *_this,
|
|
TrackedDevicePose_t *pRenderPoseArray, uint32_t unRenderPoseArrayCount,
|
|
TrackedDevicePose_t *pGamePoseArray, uint32_t unGamePoseArrayCount )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_026_WaitGetPoses_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pRenderPoseArray = pRenderPoseArray,
|
|
.unRenderPoseArrayCount = unRenderPoseArrayCount,
|
|
.pGamePoseArray = pGamePoseArray,
|
|
.unGamePoseArrayCount = unGamePoseArrayCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
wait_get_poses_init( _this->u_iface );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff && !compositor_data.handoff_called)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_026_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
/* Calling handoff after submit is optional for d3d11 but mandatory for Vulkan
|
|
* if explicit timing mode is set. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_026_PostPresentHandoff, ¶ms );
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_026_WaitGetPoses, ¶ms );
|
|
|
|
if (compositor_data.dxvk_device && compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_026_SubmitExplicitTimingData_params params = {.linux_side = _this->u_iface};
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_026_SubmitExplicitTimingData, ¶ms );
|
|
}
|
|
|
|
wait_get_poses_done( _this->u_iface );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_026_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_026_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_026_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_026_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_026_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 26 );
|
|
|
|
if (compositor_data.dxvk_device && !compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_026_SetExplicitTimingMode_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eTimingMode = VRCompositorTimingMode_Explicit_ApplicationPerformsPostPresentHandoff,
|
|
};
|
|
|
|
/* PostPresentHandoff can be used with d3d11 without SetExplicitTimingMode
|
|
* (which is Vulkan / d3d12 only), but doing the same with Vulkan results
|
|
* in lockups and crashes. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_026_SetExplicitTimingMode, ¶ms );
|
|
compositor_data.d3d11_explicit_handoff = TRUE;
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_026_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_026_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_026_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_026_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_027_Submit( struct w_steam_iface *_this,
|
|
uint32_t eEye, const w_Texture_t *pTexture,
|
|
const VRTextureBounds_t *pBounds, uint32_t nSubmitFlags )
|
|
{
|
|
struct submit_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_027_Submit_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eEye = eEye,
|
|
.pTexture = pTexture,
|
|
.pBounds = pBounds,
|
|
.nSubmitFlags = nSubmitFlags,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
|
|
compositor_data.handoff_called = FALSE;
|
|
if (pTexture->eType == TextureType_DirectX)
|
|
params.pTexture = load_compositor_texture_dxvk( eEye, pTexture, ¶ms.nSubmitFlags, &state );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_027_Submit, ¶ms );
|
|
if (pTexture->eType == TextureType_DirectX) free_compositor_texture_dxvk( &state );
|
|
return params._ret;
|
|
}
|
|
|
|
void __thiscall winIVRCompositor_IVRCompositor_027_PostPresentHandoff( struct w_steam_iface *_this )
|
|
{
|
|
struct IVRCompositor_IVRCompositor_027_PostPresentHandoff_params params = {.linux_side = _this->u_iface};
|
|
TRACE( "%p\n", _this );
|
|
post_present_handoff_init( _this->u_iface, 27 );
|
|
|
|
if (compositor_data.dxvk_device && !compositor_data.d3d11_explicit_handoff)
|
|
{
|
|
struct IVRCompositor_IVRCompositor_027_SetExplicitTimingMode_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.eTimingMode = VRCompositorTimingMode_Explicit_ApplicationPerformsPostPresentHandoff,
|
|
};
|
|
|
|
/* PostPresentHandoff can be used with d3d11 without SetExplicitTimingMode
|
|
* (which is Vulkan / d3d12 only), but doing the same with Vulkan results
|
|
* in lockups and crashes. */
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_027_SetExplicitTimingMode, ¶ms );
|
|
compositor_data.d3d11_explicit_handoff = TRUE;
|
|
}
|
|
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_027_PostPresentHandoff, ¶ms );
|
|
post_present_handoff_done();
|
|
}
|
|
|
|
uint32_t __thiscall winIVRCompositor_IVRCompositor_027_SetSkyboxOverride( struct w_steam_iface *_this,
|
|
const w_Texture_t *pTextures, uint32_t unTextureCount )
|
|
{
|
|
struct set_skybox_override_state state = {0};
|
|
struct IVRCompositor_IVRCompositor_027_SetSkyboxOverride_params params =
|
|
{
|
|
.linux_side = _this->u_iface,
|
|
.pTextures = set_skybox_override_init( pTextures, unTextureCount, &state ),
|
|
.unTextureCount = unTextureCount,
|
|
};
|
|
TRACE( "%p\n", _this );
|
|
VRCLIENT_CALL( IVRCompositor_IVRCompositor_027_SetSkyboxOverride, ¶ms );
|
|
set_skybox_override_done( pTextures, unTextureCount );
|
|
return params._ret;
|
|
}
|