I HATE WINDOWS BEING CASE INSENSITIVE
This commit is contained in:
parent
4365cc45d1
commit
bca85ad0e5
@ -1,6 +1,7 @@
|
||||
# Pléascach
|
||||
|
||||
|
||||
## Constant Improvements
|
||||
- Add more comments
|
||||
## Long Term Improvements
|
||||
- Properly query surface to find supported formats for surfaces
|
||||
- Add pipeline caching
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
|
||||
#include <Memory/Memory.hpp>
|
||||
|
||||
|
||||
using namespace std::string_literals;
|
||||
|
||||
Renderer::Renderer(Window& win) : win(win) {
|
||||
|
||||
@ -11,6 +11,7 @@
|
||||
|
||||
struct Window;
|
||||
|
||||
|
||||
/* Contains all of the Vulkan objects involved in rendering the scene */
|
||||
struct Renderer {
|
||||
Renderer(Window& win);
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
#include <Renderer/RenderPass.hpp>
|
||||
|
||||
|
||||
RenderPass::RenderPass(vk::Device dev, vk::Format image_format, vk::Format depth_format) {
|
||||
/* transform color image from UNDEFINED format to presentable one for rendering */
|
||||
auto color_attach_desc = vk::AttachmentDescription {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user