123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- /******************************************************************************
- Copyright (C) 2023 by Lain Bailey <[email protected]>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 2 of the License, or
- (at your option) any later version.
- This program 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 General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- ******************************************************************************/
- #include "d3d11-subsystem.hpp"
- #include <unordered_map>
- static inline bool get_monitor(gs_device_t *device, int monitor_idx, IDXGIOutput **dxgiOutput)
- {
- HRESULT hr;
- hr = device->adapter->EnumOutputs(monitor_idx, dxgiOutput);
- if (FAILED(hr)) {
- if (hr == DXGI_ERROR_NOT_FOUND)
- return false;
- throw HRError("Failed to get output", hr);
- }
- return true;
- }
- void gs_duplicator::Start()
- {
- ComPtr<IDXGIOutput5> output5;
- ComPtr<IDXGIOutput1> output1;
- ComPtr<IDXGIOutput> output;
- HRESULT hr;
- if (!get_monitor(device, idx, output.Assign()))
- throw "Invalid monitor index";
- hr = output->QueryInterface(IID_PPV_ARGS(output5.Assign()));
- hdr = false;
- sdr_white_nits = 80.f;
- if (SUCCEEDED(hr)) {
- constexpr DXGI_FORMAT supportedFormats[]{
- DXGI_FORMAT_R16G16B16A16_FLOAT,
- DXGI_FORMAT_B8G8R8A8_UNORM,
- };
- hr = output5->DuplicateOutput1(device->device, 0, _countof(supportedFormats), supportedFormats,
- duplicator.Assign());
- if (FAILED(hr))
- throw HRError("Failed to DuplicateOutput1", hr);
- DXGI_OUTPUT_DESC desc;
- if (SUCCEEDED(output->GetDesc(&desc))) {
- gs_monitor_color_info info = device->GetMonitorColorInfo(desc.Monitor);
- hdr = info.hdr;
- sdr_white_nits = (float)info.sdr_white_nits;
- }
- } else {
- hr = output->QueryInterface(IID_PPV_ARGS(output1.Assign()));
- if (FAILED(hr))
- throw HRError("Failed to query IDXGIOutput1", hr);
- hr = output1->DuplicateOutput(device->device, duplicator.Assign());
- if (FAILED(hr))
- throw HRError("Failed to DuplicateOutput", hr);
- }
- }
- gs_duplicator::gs_duplicator(gs_device_t *device_, int monitor_idx)
- : gs_obj(device_, gs_type::gs_duplicator),
- texture(nullptr),
- idx(monitor_idx),
- refs(1),
- updated(false)
- {
- Start();
- }
- gs_duplicator::~gs_duplicator()
- {
- delete texture;
- }
- extern "C" {
- EXPORT bool device_get_duplicator_monitor_info(gs_device_t *device, int monitor_idx, struct gs_monitor_info *info)
- {
- DXGI_OUTPUT_DESC desc;
- HRESULT hr;
- try {
- ComPtr<IDXGIOutput> output;
- if (!get_monitor(device, monitor_idx, output.Assign()))
- return false;
- hr = output->GetDesc(&desc);
- if (FAILED(hr))
- throw HRError("GetDesc failed", hr);
- } catch (const HRError &error) {
- blog(LOG_ERROR,
- "device_get_duplicator_monitor_info: "
- "%s (%08lX)",
- error.str, error.hr);
- return false;
- }
- switch (desc.Rotation) {
- case DXGI_MODE_ROTATION_UNSPECIFIED:
- case DXGI_MODE_ROTATION_IDENTITY:
- info->rotation_degrees = 0;
- break;
- case DXGI_MODE_ROTATION_ROTATE90:
- info->rotation_degrees = 90;
- break;
- case DXGI_MODE_ROTATION_ROTATE180:
- info->rotation_degrees = 180;
- break;
- case DXGI_MODE_ROTATION_ROTATE270:
- info->rotation_degrees = 270;
- break;
- }
- info->x = desc.DesktopCoordinates.left;
- info->y = desc.DesktopCoordinates.top;
- info->cx = desc.DesktopCoordinates.right - info->x;
- info->cy = desc.DesktopCoordinates.bottom - info->y;
- return true;
- }
- EXPORT int device_duplicator_get_monitor_index(gs_device_t *device, void *monitor)
- {
- const HMONITOR handle = (HMONITOR)monitor;
- int index = -1;
- UINT output = 0;
- while (index == -1) {
- IDXGIOutput *pOutput;
- const HRESULT hr = device->adapter->EnumOutputs(output, &pOutput);
- if (hr == DXGI_ERROR_NOT_FOUND)
- break;
- if (SUCCEEDED(hr)) {
- DXGI_OUTPUT_DESC desc;
- if (SUCCEEDED(pOutput->GetDesc(&desc))) {
- if (desc.Monitor == handle)
- index = output;
- } else {
- blog(LOG_ERROR,
- "device_duplicator_get_monitor_index: "
- "Failed to get desc (%08lX)",
- hr);
- }
- pOutput->Release();
- } else if (hr == DXGI_ERROR_NOT_FOUND) {
- blog(LOG_ERROR,
- "device_duplicator_get_monitor_index: "
- "Failed to get output (%08lX)",
- hr);
- }
- ++output;
- }
- return index;
- }
- static std::unordered_map<int, gs_duplicator *> instances;
- void reset_duplicators(void)
- {
- for (std::pair<const int, gs_duplicator *> &pair : instances) {
- pair.second->updated = false;
- }
- }
- EXPORT gs_duplicator_t *device_duplicator_create(gs_device_t *device, int monitor_idx)
- {
- gs_duplicator *duplicator = nullptr;
- const auto it = instances.find(monitor_idx);
- if (it != instances.end()) {
- duplicator = it->second;
- duplicator->refs++;
- return duplicator;
- }
- try {
- duplicator = new gs_duplicator(device, monitor_idx);
- instances[monitor_idx] = duplicator;
- } catch (const char *error) {
- blog(LOG_DEBUG, "device_duplicator_create: %s", error);
- return nullptr;
- } catch (const HRError &error) {
- blog(LOG_DEBUG, "device_duplicator_create: %s (%08lX)", error.str, error.hr);
- return nullptr;
- }
- return duplicator;
- }
- EXPORT void gs_duplicator_destroy(gs_duplicator_t *duplicator)
- {
- if (--duplicator->refs == 0) {
- instances.erase(duplicator->idx);
- delete duplicator;
- }
- }
- static inline void copy_texture(gs_duplicator_t *d, ID3D11Texture2D *tex)
- {
- D3D11_TEXTURE2D_DESC desc;
- tex->GetDesc(&desc);
- const gs_color_format format = ConvertDXGITextureFormat(desc.Format);
- const gs_color_format general_format = gs_generalize_format(format);
- if (!d->texture || (d->texture->width != desc.Width) || (d->texture->height != desc.Height) ||
- (d->texture->format != general_format)) {
- delete d->texture;
- d->texture = (gs_texture_2d *)gs_texture_create(desc.Width, desc.Height, general_format, 1, nullptr, 0);
- d->color_space =
- d->hdr ? GS_CS_709_SCRGB
- : ((desc.Format == DXGI_FORMAT_R16G16B16A16_FLOAT) ? GS_CS_SRGB_16F : GS_CS_SRGB);
- }
- if (d->texture)
- d->device->context->CopyResource(d->texture->texture, tex);
- }
- EXPORT bool gs_duplicator_update_frame(gs_duplicator_t *d)
- {
- DXGI_OUTDUPL_FRAME_INFO info;
- ComPtr<ID3D11Texture2D> tex;
- ComPtr<IDXGIResource> res;
- HRESULT hr;
- if (!d->duplicator) {
- return false;
- }
- if (d->updated) {
- return true;
- }
- hr = d->duplicator->AcquireNextFrame(0, &info, res.Assign());
- if (hr == DXGI_ERROR_ACCESS_LOST) {
- return false;
- } else if (hr == DXGI_ERROR_WAIT_TIMEOUT) {
- return true;
- } else if (FAILED(hr)) {
- blog(LOG_ERROR,
- "gs_duplicator_update_frame: Failed to update "
- "frame (%08lX)",
- hr);
- return true;
- }
- hr = res->QueryInterface(__uuidof(ID3D11Texture2D), (void **)tex.Assign());
- if (FAILED(hr)) {
- blog(LOG_ERROR,
- "gs_duplicator_update_frame: Failed to query "
- "ID3D11Texture2D (%08lX)",
- hr);
- d->duplicator->ReleaseFrame();
- return true;
- }
- copy_texture(d, tex);
- d->duplicator->ReleaseFrame();
- d->updated = true;
- return true;
- }
- EXPORT gs_texture_t *gs_duplicator_get_texture(gs_duplicator_t *duplicator)
- {
- return duplicator->texture;
- }
- EXPORT enum gs_color_space gs_duplicator_get_color_space(gs_duplicator_t *duplicator)
- {
- return duplicator->color_space;
- }
- EXPORT float gs_duplicator_get_sdr_white_level(gs_duplicator_t *duplicator)
- {
- return duplicator->sdr_white_nits;
- }
- }
|