[Vulkan] Update title bar warning

This commit is contained in:
Triang3l 2022-07-03 19:45:48 +03:00
parent f7ef051025
commit ee84f4e267
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ class VulkanGraphicsSystem : public GraphicsSystem {
static bool IsAvailable() { return true; }
std::string name() const override { return "Vulkan Prototype - DO NOT USE"; }
std::string name() const override {
return "Vulkan - HEAVILY INCOMPLETE, early development";
}
X_STATUS Setup(cpu::Processor* processor, kernel::KernelState* kernel_state,
ui::WindowedAppContext* app_context,