2022-06-15 02:09:51 +02:00
|
|
|
/*****************************************************************************\
|
|
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
|
|
This file is licensed under the Snes9x License.
|
|
|
|
For further information, consult the LICENSE file in the root directory.
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "gtk_s9x.h"
|
|
|
|
#include "gtk_display_driver.h"
|
|
|
|
#include "../../vulkan/vulkan_context.hpp"
|
|
|
|
#include "../../vulkan/vulkan_texture.hpp"
|
|
|
|
#include "../../vulkan/slang_preset.hpp"
|
|
|
|
#include "../../vulkan/vulkan_shader_chain.hpp"
|
|
|
|
|
2023-01-25 00:33:46 +01:00
|
|
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
|
|
|
#include "gtk_wayland_surface.h"
|
|
|
|
#endif
|
|
|
|
|
2022-06-15 02:09:51 +02:00
|
|
|
class S9xVulkanDisplayDriver : public S9xDisplayDriver
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
S9xVulkanDisplayDriver(Snes9xWindow *window, Snes9xConfig *config);
|
|
|
|
~S9xVulkanDisplayDriver();
|
|
|
|
void refresh(int width, int height) override;
|
|
|
|
int init() override;
|
|
|
|
void deinit() override;
|
|
|
|
void update(uint16_t *buffer, int width, int height, int stride_in_pixels) override;
|
|
|
|
void *get_parameters() override;
|
|
|
|
void save(const char *filename) override;
|
|
|
|
bool is_ready() override;
|
|
|
|
|
|
|
|
static int query_availability();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<Vulkan::Context> context;
|
|
|
|
Vulkan::Swapchain *swapchain;
|
|
|
|
vk::Device device;
|
|
|
|
|
|
|
|
GdkDisplay *gdk_display;
|
|
|
|
GdkWindow *gdk_window;
|
|
|
|
Display *display;
|
|
|
|
Window xid;
|
|
|
|
Colormap colormap;
|
|
|
|
int current_width;
|
|
|
|
int current_height;
|
|
|
|
|
2023-01-25 00:33:46 +01:00
|
|
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
|
|
|
std::unique_ptr<WaylandSurface> wayland_surface;
|
|
|
|
#endif
|
|
|
|
|
2022-06-15 02:09:51 +02:00
|
|
|
void create_pipeline();
|
|
|
|
vk::UniqueDescriptorSetLayout descriptor_set_layout;
|
|
|
|
vk::UniquePipelineLayout pipeline_layout;
|
|
|
|
vk::UniquePipeline pipeline;
|
|
|
|
vk::Sampler linear_sampler;
|
|
|
|
vk::Sampler nearest_sampler;
|
|
|
|
|
|
|
|
void draw_buffer(uint8_t *buffer, int width, int height, int byte_stride);
|
|
|
|
bool filter = true;
|
|
|
|
std::vector<Vulkan::Texture> textures;
|
|
|
|
std::vector<vk::UniqueDescriptorSet> descriptors;
|
|
|
|
std::unique_ptr<Vulkan::ShaderChain> shaderchain;
|
|
|
|
};
|