#pragma once #include "../dxvk/dxvk_device.h" #include "../dxvk/dxvk_context.h" namespace dxvk { /** * \brief Gamma control point */ struct DxvkGammaCp { uint16_t r, g, b, a; }; /** * \brief Swap chain blitter * * Provides common rendering code for blitting * rendered images to a swap chain image. */ class DxvkSwapchainBlitter : public RcObject { public: DxvkSwapchainBlitter(const Rc& device); ~DxvkSwapchainBlitter(); /** * \brief Records presentation commands * * \param [in] ctx Context * \param [in] dstView Swap chain image view * \param [in] srcView Image to present * \param [in] dstRect Destination rectangle * \param [in] srcRect Back buffer rectangle */ void presentImage( DxvkContext* ctx, const Rc& dstView, VkRect2D dstRect, const Rc& srcView, VkRect2D srcRect); /** * \brief Sets gamma ramp * * If the number of control points is non-zero, this * will create a texture containing a gamma ramp that * will be used for presentation. * \param [in] cpCount Number of control points * \param [in] cpData Control point data */ void setGammaRamp( uint32_t cpCount, const DxvkGammaCp* cpData); private: enum BindingIds : uint32_t { Image = 0, Gamma = 1, }; struct PresenterArgs { VkOffset2D srcOffset; union { VkExtent2D srcExtent; VkOffset2D dstOffset; }; }; Rc m_device; Rc m_fsCopy; Rc m_fsBlit; Rc m_fsResolve; Rc m_vs; Rc m_gammaImage; Rc m_gammaView; bool m_gammaDirty = false; std::vector m_gammaRamp; Rc m_resolveImage; Rc m_resolveView; Rc m_samplerPresent; Rc m_samplerGamma; void draw( DxvkContext* ctx, const Rc& fs, const Rc& dstView, VkRect2D dstRect, const Rc& srcView, VkRect2D srcRect); void resolve( DxvkContext* ctx, const Rc& dstView, const Rc& srcView); void updateGammaTexture(DxvkContext* ctx); void createSampler(); void createShaders(); void createResolveImage( const DxvkImageCreateInfo& info); void destroyResolveImage(); }; }