Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kevin: migration for new build host #1268

Merged
merged 4 commits into from
May 17, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
renderer: remove unused fields for now
  • Loading branch information
TheJJ committed May 17, 2020
commit 943b582ad6df6094eebf0ad3113bdea610f8654a
10 changes: 5 additions & 5 deletions libopenage/renderer/vulkan/render_target.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2017-2018 the openage authors. See copying.md for legal info.
// Copyright 2017-2020 the openage authors. See copying.md for legal info.

#pragma once

Expand Down Expand Up @@ -153,13 +153,13 @@ class VlkDrawableDisplay {
};

class VlkFramebuffer final : public RenderTarget {
std::vector<VkImageView> attachments;
VkFramebuffer framebuffer;
VkViewport viewport;
//std::vector<VkImageView> attachments;
//VkFramebuffer framebuffer;
//VkViewport viewport;

public:
VlkFramebuffer(VkRenderPass /*pass*/, std::vector<VkImageView> const& /*attachments*/) {

// TODO.
}
};

Expand Down