|
| | WINE_DEFAULT_DEBUG_CHANNEL (d3d11) |
| |
| static HRESULT | get_resource_properties (ID3D11Resource *resource, D3D11_RESOURCE_DIMENSION *dimension, DXGI_FORMAT *format, unsigned int *miplevel_count, unsigned int *layer_count) |
| |
| static HRESULT | set_dsv_desc_from_resource (D3D11_DEPTH_STENCIL_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static HRESULT | normalize_dsv_desc (D3D11_DEPTH_STENCIL_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static HRESULT | set_rtv_desc_from_resource (D3D11_RENDER_TARGET_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static HRESULT | normalize_rtv_desc (D3D11_RENDER_TARGET_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static HRESULT | set_srv_desc_from_resource (D3D11_SHADER_RESOURCE_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static HRESULT | normalize_srv_desc (D3D11_SHADER_RESOURCE_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static HRESULT | set_uav_desc_from_resource (D3D11_UNORDERED_ACCESS_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static HRESULT | normalize_uav_desc (D3D11_UNORDERED_ACCESS_VIEW_DESC *desc, ID3D11Resource *resource) |
| |
| static struct d3d_depthstencil_view * | impl_from_ID3D11DepthStencilView (ID3D11DepthStencilView *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_depthstencil_view_QueryInterface (ID3D11DepthStencilView *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_depthstencil_view_AddRef (ID3D11DepthStencilView *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_depthstencil_view_Release (ID3D11DepthStencilView *iface) |
| |
| static void STDMETHODCALLTYPE | d3d11_depthstencil_view_GetDevice (ID3D11DepthStencilView *iface, ID3D11Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_depthstencil_view_GetPrivateData (ID3D11DepthStencilView *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_depthstencil_view_SetPrivateData (ID3D11DepthStencilView *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_depthstencil_view_SetPrivateDataInterface (ID3D11DepthStencilView *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d11_depthstencil_view_GetResource (ID3D11DepthStencilView *iface, ID3D11Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d11_depthstencil_view_GetDesc (ID3D11DepthStencilView *iface, D3D11_DEPTH_STENCIL_VIEW_DESC *desc) |
| |
| static struct d3d_depthstencil_view * | impl_from_ID3D10DepthStencilView (ID3D10DepthStencilView *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_depthstencil_view_QueryInterface (ID3D10DepthStencilView *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d10_depthstencil_view_AddRef (ID3D10DepthStencilView *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d10_depthstencil_view_Release (ID3D10DepthStencilView *iface) |
| |
| static void STDMETHODCALLTYPE | d3d10_depthstencil_view_GetDevice (ID3D10DepthStencilView *iface, ID3D10Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_depthstencil_view_GetPrivateData (ID3D10DepthStencilView *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_depthstencil_view_SetPrivateData (ID3D10DepthStencilView *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_depthstencil_view_SetPrivateDataInterface (ID3D10DepthStencilView *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d10_depthstencil_view_GetResource (ID3D10DepthStencilView *iface, ID3D10Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d10_depthstencil_view_GetDesc (ID3D10DepthStencilView *iface, D3D10_DEPTH_STENCIL_VIEW_DESC *desc) |
| |
| static void STDMETHODCALLTYPE | d3d_depth_stencil_view_wined3d_object_destroyed (void *parent) |
| |
| static void | wined3d_depth_stencil_view_desc_from_d3d11 (struct wined3d_view_desc *wined3d_desc, const D3D11_DEPTH_STENCIL_VIEW_DESC *desc) |
| |
| static HRESULT | d3d_depthstencil_view_init (struct d3d_depthstencil_view *view, struct d3d_device *device, ID3D11Resource *resource, const D3D11_DEPTH_STENCIL_VIEW_DESC *desc) |
| |
| HRESULT | d3d_depthstencil_view_create (struct d3d_device *device, ID3D11Resource *resource, const D3D11_DEPTH_STENCIL_VIEW_DESC *desc, struct d3d_depthstencil_view **view) |
| |
| struct d3d_depthstencil_view * | unsafe_impl_from_ID3D11DepthStencilView (ID3D11DepthStencilView *iface) |
| |
| struct d3d_depthstencil_view * | unsafe_impl_from_ID3D10DepthStencilView (ID3D10DepthStencilView *iface) |
| |
| static struct d3d_rendertarget_view * | impl_from_ID3D11RenderTargetView (ID3D11RenderTargetView *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_rendertarget_view_QueryInterface (ID3D11RenderTargetView *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_rendertarget_view_AddRef (ID3D11RenderTargetView *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_rendertarget_view_Release (ID3D11RenderTargetView *iface) |
| |
| static void STDMETHODCALLTYPE | d3d11_rendertarget_view_GetDevice (ID3D11RenderTargetView *iface, ID3D11Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_rendertarget_view_GetPrivateData (ID3D11RenderTargetView *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_rendertarget_view_SetPrivateData (ID3D11RenderTargetView *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_rendertarget_view_SetPrivateDataInterface (ID3D11RenderTargetView *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d11_rendertarget_view_GetResource (ID3D11RenderTargetView *iface, ID3D11Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d11_rendertarget_view_GetDesc (ID3D11RenderTargetView *iface, D3D11_RENDER_TARGET_VIEW_DESC *desc) |
| |
| static struct d3d_rendertarget_view * | impl_from_ID3D10RenderTargetView (ID3D10RenderTargetView *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_rendertarget_view_QueryInterface (ID3D10RenderTargetView *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d10_rendertarget_view_AddRef (ID3D10RenderTargetView *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d10_rendertarget_view_Release (ID3D10RenderTargetView *iface) |
| |
| static void STDMETHODCALLTYPE | d3d10_rendertarget_view_GetDevice (ID3D10RenderTargetView *iface, ID3D10Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_rendertarget_view_GetPrivateData (ID3D10RenderTargetView *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_rendertarget_view_SetPrivateData (ID3D10RenderTargetView *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_rendertarget_view_SetPrivateDataInterface (ID3D10RenderTargetView *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d10_rendertarget_view_GetResource (ID3D10RenderTargetView *iface, ID3D10Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d10_rendertarget_view_GetDesc (ID3D10RenderTargetView *iface, D3D10_RENDER_TARGET_VIEW_DESC *desc) |
| |
| static void STDMETHODCALLTYPE | d3d_render_target_view_wined3d_object_destroyed (void *parent) |
| |
| static void | wined3d_rendertarget_view_desc_from_d3d11 (struct wined3d_view_desc *wined3d_desc, const D3D11_RENDER_TARGET_VIEW_DESC *desc) |
| |
| static HRESULT | d3d_rendertarget_view_init (struct d3d_rendertarget_view *view, struct d3d_device *device, ID3D11Resource *resource, const D3D11_RENDER_TARGET_VIEW_DESC *desc) |
| |
| HRESULT | d3d_rendertarget_view_create (struct d3d_device *device, ID3D11Resource *resource, const D3D11_RENDER_TARGET_VIEW_DESC *desc, struct d3d_rendertarget_view **view) |
| |
| struct d3d_rendertarget_view * | unsafe_impl_from_ID3D11RenderTargetView (ID3D11RenderTargetView *iface) |
| |
| struct d3d_rendertarget_view * | unsafe_impl_from_ID3D10RenderTargetView (ID3D10RenderTargetView *iface) |
| |
| static struct d3d_shader_resource_view * | impl_from_ID3D11ShaderResourceView (ID3D11ShaderResourceView *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_shader_resource_view_QueryInterface (ID3D11ShaderResourceView *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_shader_resource_view_AddRef (ID3D11ShaderResourceView *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_shader_resource_view_Release (ID3D11ShaderResourceView *iface) |
| |
| static void STDMETHODCALLTYPE | d3d11_shader_resource_view_GetDevice (ID3D11ShaderResourceView *iface, ID3D11Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_shader_resource_view_GetPrivateData (ID3D11ShaderResourceView *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_shader_resource_view_SetPrivateData (ID3D11ShaderResourceView *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_shader_resource_view_SetPrivateDataInterface (ID3D11ShaderResourceView *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d11_shader_resource_view_GetResource (ID3D11ShaderResourceView *iface, ID3D11Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d11_shader_resource_view_GetDesc (ID3D11ShaderResourceView *iface, D3D11_SHADER_RESOURCE_VIEW_DESC *desc) |
| |
| static struct d3d_shader_resource_view * | impl_from_ID3D10ShaderResourceView (ID3D10ShaderResourceView1 *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_shader_resource_view_QueryInterface (ID3D10ShaderResourceView1 *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d10_shader_resource_view_AddRef (ID3D10ShaderResourceView1 *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d10_shader_resource_view_Release (ID3D10ShaderResourceView1 *iface) |
| |
| static void STDMETHODCALLTYPE | d3d10_shader_resource_view_GetDevice (ID3D10ShaderResourceView1 *iface, ID3D10Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_shader_resource_view_GetPrivateData (ID3D10ShaderResourceView1 *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_shader_resource_view_SetPrivateData (ID3D10ShaderResourceView1 *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d10_shader_resource_view_SetPrivateDataInterface (ID3D10ShaderResourceView1 *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d10_shader_resource_view_GetResource (ID3D10ShaderResourceView1 *iface, ID3D10Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d10_shader_resource_view_GetDesc (ID3D10ShaderResourceView1 *iface, D3D10_SHADER_RESOURCE_VIEW_DESC *desc) |
| |
| static void STDMETHODCALLTYPE | d3d10_shader_resource_view_GetDesc1 (ID3D10ShaderResourceView1 *iface, D3D10_SHADER_RESOURCE_VIEW_DESC1 *desc) |
| |
| static void STDMETHODCALLTYPE | d3d_shader_resource_view_wined3d_object_destroyed (void *parent) |
| |
| static unsigned int | wined3d_view_flags_from_d3d11_bufferex_flags (unsigned int d3d11_flags) |
| |
| static HRESULT | wined3d_shader_resource_view_desc_from_d3d11 (struct wined3d_view_desc *wined3d_desc, const D3D11_SHADER_RESOURCE_VIEW_DESC *desc) |
| |
| static HRESULT | d3d_shader_resource_view_init (struct d3d_shader_resource_view *view, struct d3d_device *device, ID3D11Resource *resource, const D3D11_SHADER_RESOURCE_VIEW_DESC *desc) |
| |
| HRESULT | d3d_shader_resource_view_create (struct d3d_device *device, ID3D11Resource *resource, const D3D11_SHADER_RESOURCE_VIEW_DESC *desc, struct d3d_shader_resource_view **view) |
| |
| struct d3d_shader_resource_view * | unsafe_impl_from_ID3D11ShaderResourceView (ID3D11ShaderResourceView *iface) |
| |
| struct d3d_shader_resource_view * | unsafe_impl_from_ID3D10ShaderResourceView (ID3D10ShaderResourceView *iface) |
| |
| static struct d3d11_unordered_access_view * | impl_from_ID3D11UnorderedAccessView (ID3D11UnorderedAccessView *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_unordered_access_view_QueryInterface (ID3D11UnorderedAccessView *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_unordered_access_view_AddRef (ID3D11UnorderedAccessView *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_unordered_access_view_Release (ID3D11UnorderedAccessView *iface) |
| |
| static void STDMETHODCALLTYPE | d3d11_unordered_access_view_GetDevice (ID3D11UnorderedAccessView *iface, ID3D11Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_unordered_access_view_GetPrivateData (ID3D11UnorderedAccessView *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_unordered_access_view_SetPrivateData (ID3D11UnorderedAccessView *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_unordered_access_view_SetPrivateDataInterface (ID3D11UnorderedAccessView *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d11_unordered_access_view_GetResource (ID3D11UnorderedAccessView *iface, ID3D11Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d11_unordered_access_view_GetDesc (ID3D11UnorderedAccessView *iface, D3D11_UNORDERED_ACCESS_VIEW_DESC *desc) |
| |
| static void STDMETHODCALLTYPE | d3d11_unordered_access_view_wined3d_object_destroyed (void *parent) |
| |
| static unsigned int | wined3d_view_flags_from_d3d11_buffer_uav_flags (unsigned int d3d11_flags) |
| |
| static HRESULT | wined3d_unordered_access_view_desc_from_d3d11 (struct wined3d_view_desc *wined3d_desc, const D3D11_UNORDERED_ACCESS_VIEW_DESC *desc) |
| |
| static HRESULT | d3d11_unordered_access_view_init (struct d3d11_unordered_access_view *view, struct d3d_device *device, ID3D11Resource *resource, const D3D11_UNORDERED_ACCESS_VIEW_DESC *desc) |
| |
| HRESULT | d3d11_unordered_access_view_create (struct d3d_device *device, ID3D11Resource *resource, const D3D11_UNORDERED_ACCESS_VIEW_DESC *desc, struct d3d11_unordered_access_view **view) |
| |
| struct d3d11_unordered_access_view * | unsafe_impl_from_ID3D11UnorderedAccessView (ID3D11UnorderedAccessView *iface) |
| |
| static struct d3d_video_decoder_output_view * | impl_from_ID3D11VideoDecoderOutputView (ID3D11VideoDecoderOutputView *iface) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_video_decoder_output_view_QueryInterface (ID3D11VideoDecoderOutputView *iface, REFIID riid, void **object) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_video_decoder_output_view_AddRef (ID3D11VideoDecoderOutputView *iface) |
| |
| static ULONG STDMETHODCALLTYPE | d3d11_video_decoder_output_view_Release (ID3D11VideoDecoderOutputView *iface) |
| |
| static void STDMETHODCALLTYPE | d3d11_video_decoder_output_view_GetDevice (ID3D11VideoDecoderOutputView *iface, ID3D11Device **device) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_video_decoder_output_view_GetPrivateData (ID3D11VideoDecoderOutputView *iface, REFGUID guid, UINT *data_size, void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_video_decoder_output_view_SetPrivateData (ID3D11VideoDecoderOutputView *iface, REFGUID guid, UINT data_size, const void *data) |
| |
| static HRESULT STDMETHODCALLTYPE | d3d11_video_decoder_output_view_SetPrivateDataInterface (ID3D11VideoDecoderOutputView *iface, REFGUID guid, const IUnknown *data) |
| |
| static void STDMETHODCALLTYPE | d3d11_video_decoder_output_view_GetResource (ID3D11VideoDecoderOutputView *iface, ID3D11Resource **resource) |
| |
| static void STDMETHODCALLTYPE | d3d11_video_decoder_output_view_GetDesc (ID3D11VideoDecoderOutputView *iface, D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC *desc) |
| |
| static HRESULT | d3d_video_decoder_output_view_init (struct d3d_video_decoder_output_view *view, struct d3d_device *device, ID3D11Resource *resource, const D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC *desc) |
| |
| HRESULT | d3d_video_decoder_output_view_create (struct d3d_device *device, ID3D11Resource *resource, const D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC *desc, struct d3d_video_decoder_output_view **view) |
| |