1b4281b895
Still a lot to do
17 lines
385 B
C++
17 lines
385 B
C++
#ifndef VULKAN_DEVICE_X11_H
|
|
#define VULKAN_DEVICE_X11_H
|
|
|
|
#include "drivers/vulkan/vulkan_context.h"
|
|
#include <X11/Xlib.h>
|
|
|
|
class VulkanContextX11 : public VulkanContext {
|
|
|
|
virtual const char *_get_platform_surface_extension() const;
|
|
|
|
public:
|
|
int window_create(::Window p_window, Display *p_display, int p_width, int p_height);
|
|
|
|
VulkanContextX11();
|
|
};
|
|
|
|
#endif // VULKAN_DEVICE_X11_H
|