gstreamer/subprojects/gst-plugins-bad/gst-libs/gst/d3d11/gstd3d11device-private.h
Seungha Yang 40f7d7f1f7 d3d11device: Add device-removed-reason property
In addition to device removed status monitoring in gst_d3d11_result()
method, if ID3D11Device4 interface is available,
an event handle will be used for device removed status update.
And "device-removed" signal is removed since applications can monitor
the device removed status via gobject notify

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6699>
2024-04-21 12:06:03 +00:00

72 lines
2.7 KiB
C

/* GStreamer
* Copyright (C) 2023 Seungha Yang <seungha@centricular.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#pragma once
#include <gst/gst.h>
#include <gst/d3d11/gstd3d11_fwd.h>
#include <gst/d3dshader/gstd3dshader.h>
G_BEGIN_DECLS
GST_D3D11_API
gint64 gst_d3d11_pixel_shader_token_new (void);
GST_D3D11_API
gint64 gst_d3d11_vertex_shader_token_new (void);
GST_D3D11_API
gint64 gst_d3d11_compute_shader_token_new (void);
GST_D3D11_API
HRESULT gst_d3d11_device_get_pixel_shader (GstD3D11Device * device,
gint64 token,
const gchar * entry_point,
const GstD3DShaderByteCode * bytecode,
ID3D11PixelShader ** ps);
GST_D3D11_API
HRESULT gst_d3d11_device_get_vertex_shader (GstD3D11Device * device,
gint64 token,
const gchar * entry_point,
const GstD3DShaderByteCode * bytecode,
const D3D11_INPUT_ELEMENT_DESC * input_desc,
guint desc_len,
ID3D11VertexShader ** vs,
ID3D11InputLayout ** layout);
GST_D3D11_API
HRESULT gst_d3d11_device_get_sampler (GstD3D11Device * device,
D3D11_FILTER filter,
ID3D11SamplerState ** sampler);
GST_D3D11_API
HRESULT gst_d3d11_device_get_rasterizer (GstD3D11Device * device,
ID3D11RasterizerState ** rasterizer);
GST_D3D11_API
HRESULT gst_d3d11_device_get_rasterizer_msaa (GstD3D11Device * device,
ID3D11RasterizerState ** rasterizer);
GST_D3D11_API
void gst_d3d11_device_check_device_removed (GstD3D11Device * device);
G_END_DECLS