Skip to content

Commit

Permalink
[host] d12: pass back rotation metadata to the client
Browse files Browse the repository at this point in the history
  • Loading branch information
gnif committed Feb 27, 2024
1 parent 57ac020 commit c7f1aad
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 10 deletions.
14 changes: 8 additions & 6 deletions host/platform/Windows/capture/D12/backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ struct D12Backend
ID3D12CommandQueue * commandQueue);

ID3D12Resource * (*fetch)(
D12Backend * instance,
unsigned frameBufferIndex,
RECT ** dirtyRects,
unsigned * nbDirtyRects);
D12Backend * instance,
unsigned frameBufferIndex,
RECT ** dirtyRects,
unsigned * nbDirtyRects,
CaptureRotation * rotation);
};

static inline bool d12_backendCreate(const D12Backend * backend,
Expand Down Expand Up @@ -97,9 +98,10 @@ static inline CaptureResult d12_backendSync(D12Backend * instance,
{ return instance->sync(instance, commandQueue); }

static inline ID3D12Resource * d12_backendFetch(D12Backend * instance,
unsigned frameBufferIndex, RECT ** dirtyRects, unsigned * nbDirtyRects)
unsigned frameBufferIndex, RECT ** dirtyRects, unsigned * nbDirtyRects,
CaptureRotation * rotation)
{ return instance->fetch(instance, frameBufferIndex, dirtyRects,
nbDirtyRects); }
nbDirtyRects, rotation); }

// Backend defines

Expand Down
26 changes: 25 additions & 1 deletion host/platform/Windows/capture/D12/backend/dd.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ typedef struct DDInstance
ID3D11Device5 ** device;
ID3D11DeviceContext4 ** context;
IDXGIOutputDuplication ** dup;
CaptureRotation rotation;
bool release;

DDCacheInfo cache[CACHE_SIZE];
Expand Down Expand Up @@ -261,6 +262,28 @@ static bool d12_dd_init(
goto exit;
}

DXGI_OUTDUPL_DESC dupDesc;
IDXGIOutputDuplication_GetDesc(*dup, &dupDesc);
switch(dupDesc.Rotation)
{
case DXGI_MODE_ROTATION_UNSPECIFIED:
case DXGI_MODE_ROTATION_IDENTITY:
this->rotation = CAPTURE_ROT_0;
break;

case DXGI_MODE_ROTATION_ROTATE90:
this->rotation = CAPTURE_ROT_90;
break;

case DXGI_MODE_ROTATION_ROTATE180:
this->rotation = CAPTURE_ROT_180;
break;

case DXGI_MODE_ROTATION_ROTATE270:
this->rotation = CAPTURE_ROT_270;
break;
}

ID3D12Device3_AddRef(device);
comRef_toGlobal(this->d12device, &device );
comRef_toGlobal(this->device , d11device5 );
Expand Down Expand Up @@ -419,7 +442,7 @@ static CaptureResult d12_dd_sync(D12Backend * instance,

static ID3D12Resource * d12_dd_fetch(D12Backend * instance,
unsigned frameBufferIndex, RECT * dirtyRects[static D12_MAX_DIRTY_RECTS],
unsigned * nbDirtyRects)
unsigned * nbDirtyRects, CaptureRotation * rotation)
{
DDInstance * this = UPCAST(DDInstance, instance);

Expand All @@ -428,6 +451,7 @@ static ID3D12Resource * d12_dd_fetch(D12Backend * instance,

*dirtyRects = this->current->dirtyRects;
*nbDirtyRects = this->current->nbDirtyRects;
*rotation = this->rotation;

ID3D12Resource_AddRef(*this->current->d12Res);
return *this->current->d12Res;
Expand Down
8 changes: 5 additions & 3 deletions host/platform/Windows/capture/D12/d12.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,11 @@ static CaptureResult d12_waitFrame(unsigned frameBufferIndex,

RECT * dirtyRects;
unsigned nbDirtyRects;
CaptureRotation rotation;

comRef_defineLocal(ID3D12Resource, src);
*src = d12_backendFetch(this->backend, frameBufferIndex,
&dirtyRects, &nbDirtyRects);
&dirtyRects, &nbDirtyRects, &rotation);
if (!*src)
{
DEBUG_ERROR("D12 backend failed to produce an expected frame: %u",
Expand Down Expand Up @@ -503,7 +504,7 @@ static CaptureResult d12_waitFrame(unsigned frameBufferIndex,
CAPTURE_FMT_BGR_32 : CAPTURE_FMT_BGRA;
frame->hdr = false;
frame->hdrPQ = false;
frame->rotation = CAPTURE_ROT_0;
frame->rotation = rotation;

{
// create a clean list of rects
Expand Down Expand Up @@ -545,10 +546,11 @@ static CaptureResult d12_getFrame(unsigned frameBufferIndex,

RECT * dirtyRects;
unsigned nbDirtyRects;
CaptureRotation rotation;

comRef_defineLocal(ID3D12Resource, src);
*src = d12_backendFetch(this->backend, frameBufferIndex,
&dirtyRects, &nbDirtyRects);
&dirtyRects, &nbDirtyRects, &rotation);
if (!*src)
{
DEBUG_ERROR("D12 backend failed to produce an expected frame: %u",
Expand Down

0 comments on commit c7f1aad

Please sign in to comment.