Rename RenderDriver::create_device to RenderDriver::select_device

This commit is contained in:
2025-04-08 18:43:06 +10:00
parent 608af1b866
commit 9ab1b306b3
3 changed files with 3 additions and 3 deletions

View File

@@ -27,6 +27,6 @@ namespace Nova {
[[nodiscard]] virtual u32 get_device_count() const = 0;
[[nodiscard]] virtual const RenderDevice& get_device(u32 index) const = 0;
virtual void create_device(u32 index) = 0;
virtual void select_device(u32 index) = 0;
};
} // namespace Nova