mirror of https://github.com/snes9xgit/snes9x.git
36 lines
907 B
C++
36 lines
907 B
C++
|
#pragma once
|
||
|
#include "vulkan_context.hpp"
|
||
|
#include "vulkan_texture.hpp"
|
||
|
|
||
|
namespace Vulkan
|
||
|
{
|
||
|
|
||
|
class SimpleOutput
|
||
|
{
|
||
|
public:
|
||
|
SimpleOutput(Vulkan::Context *context, vk::Format format);
|
||
|
~SimpleOutput();
|
||
|
void do_frame(uint8_t *buffer, int width, int height, int byte_stride, int viewport_x, int viewport_y, int viewport_width, int viewport_height);
|
||
|
void set_filter(bool on);
|
||
|
|
||
|
private:
|
||
|
void create_pipeline();
|
||
|
void create_objects();
|
||
|
|
||
|
Context *context;
|
||
|
vk::Device device;
|
||
|
Vulkan::Swapchain *swapchain;
|
||
|
|
||
|
vk::UniqueDescriptorSetLayout descriptor_set_layout;
|
||
|
vk::UniquePipelineLayout pipeline_layout;
|
||
|
vk::UniquePipeline pipeline;
|
||
|
vk::Sampler linear_sampler;
|
||
|
vk::Sampler nearest_sampler;
|
||
|
vk::Format format;
|
||
|
std::vector<Vulkan::Texture> textures;
|
||
|
std::vector<vk::UniqueDescriptorSet> descriptors;
|
||
|
|
||
|
bool filter = true;
|
||
|
};
|
||
|
|
||
|
} // namespace Vulkan
|