mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 17:12:11 +00:00
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <map>
|
|
#include <array>
|
|
|
|
#include "hwrenderer/postprocessing/hw_postprocess.h"
|
|
#include "zvulkan/vulkanobjects.h"
|
|
#include "zvulkan/vulkanbuilders.h"
|
|
#include "vulkan/textures/vk_imagetransition.h"
|
|
|
|
class FString;
|
|
|
|
class VkPPShader;
|
|
class VkPPTexture;
|
|
class PipelineBarrier;
|
|
class VulkanRenderDevice;
|
|
|
|
class VkPostprocess
|
|
{
|
|
public:
|
|
VkPostprocess(VulkanRenderDevice* fb);
|
|
~VkPostprocess();
|
|
|
|
void SetActiveRenderTarget();
|
|
void PostProcessScene(int fixedcm, float flash, const std::function<void()> &afterBloomDrawEndScene2D);
|
|
|
|
void AmbientOccludeScene(float m5);
|
|
void BlurScene(float gameinfobluramount);
|
|
void ClearTonemapPalette();
|
|
|
|
void UpdateShadowMap();
|
|
|
|
void ImageTransitionScene(bool undefinedSrcLayout);
|
|
|
|
void BlitSceneToPostprocess();
|
|
void BlitCurrentToImage(VkTextureImage *image, VkImageLayout finallayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL);
|
|
void DrawPresentTexture(const IntRect &box, bool applyGamma, bool screenshot);
|
|
|
|
int GetCurrentPipelineImage() const { return mCurrentPipelineImage; }
|
|
|
|
private:
|
|
void NextEye(int eyeCount);
|
|
|
|
VulkanRenderDevice* fb = nullptr;
|
|
|
|
int mCurrentPipelineImage = 0;
|
|
|
|
friend class VkPPRenderState;
|
|
};
|