mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-18 22:35:39 +00:00
RegTest: Fix build
This commit is contained in:
parent
6fbdb6d7db
commit
944bf5dc30
|
@ -176,8 +176,8 @@ bool RegTestHostDisplay::Render(bool skip_present)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool RegTestHostDisplay::RenderScreenshot(u32 width, u32 height, std::vector<u32>* out_pixels, u32* out_stride,
|
bool RegTestHostDisplay::RenderScreenshot(u32 width, u32 height, const Common::Rectangle<s32>& draw_rect,
|
||||||
GPUTexture::Format* out_format)
|
std::vector<u32>* out_pixels, u32* out_stride, GPUTexture::Format* out_format)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,8 +53,8 @@ public:
|
||||||
void SetVSync(bool enabled) override;
|
void SetVSync(bool enabled) override;
|
||||||
|
|
||||||
bool Render(bool skip_present) override;
|
bool Render(bool skip_present) override;
|
||||||
bool RenderScreenshot(u32 width, u32 height, std::vector<u32>* out_pixels, u32* out_stride,
|
bool RenderScreenshot(u32 width, u32 height, const Common::Rectangle<s32>& draw_rect, std::vector<u32>* out_pixels,
|
||||||
GPUTexture::Format* out_format) override;
|
u32* out_stride, GPUTexture::Format* out_format) override;
|
||||||
|
|
||||||
bool SupportsTextureFormat(GPUTexture::Format format) const override;
|
bool SupportsTextureFormat(GPUTexture::Format format) const override;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue