mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-01-08 09:18:43 +00:00
Fix Raised Black Levels on Steam Deck OLED (#1265)
Add getDecoderColorRange to plvk
This commit is contained in:
parent
1cd588f25c
commit
58e27875ae
2 changed files with 7 additions and 0 deletions
|
@ -905,6 +905,12 @@ int PlVkRenderer::getRendererAttributes()
|
||||||
return attributes;
|
return attributes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int PlVkRenderer::getDecoderColorRange()
|
||||||
|
{
|
||||||
|
// Explicitly set the color range to full to fix raised black levels on OLED displays
|
||||||
|
return COLOR_RANGE_FULL;
|
||||||
|
}
|
||||||
|
|
||||||
int PlVkRenderer::getDecoderCapabilities()
|
int PlVkRenderer::getDecoderCapabilities()
|
||||||
{
|
{
|
||||||
return CAPABILITY_REFERENCE_FRAME_INVALIDATION_HEVC |
|
return CAPABILITY_REFERENCE_FRAME_INVALIDATION_HEVC |
|
||||||
|
|
|
@ -23,6 +23,7 @@ public:
|
||||||
virtual void notifyOverlayUpdated(Overlay::OverlayType) override;
|
virtual void notifyOverlayUpdated(Overlay::OverlayType) override;
|
||||||
virtual bool notifyWindowChanged(PWINDOW_STATE_CHANGE_INFO) override;
|
virtual bool notifyWindowChanged(PWINDOW_STATE_CHANGE_INFO) override;
|
||||||
virtual int getRendererAttributes() override;
|
virtual int getRendererAttributes() override;
|
||||||
|
virtual int getDecoderColorRange() override;
|
||||||
virtual int getDecoderCapabilities() override;
|
virtual int getDecoderCapabilities() override;
|
||||||
virtual bool needsTestFrame() override;
|
virtual bool needsTestFrame() override;
|
||||||
virtual bool isPixelFormatSupported(int videoFormat, enum AVPixelFormat pixelFormat) override;
|
virtual bool isPixelFormatSupported(int videoFormat, enum AVPixelFormat pixelFormat) override;
|
||||||
|
|
Loading…
Reference in a new issue