Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Merge requests
!5
Resolve "Pipeline State Object"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Pipeline State Object"
11-pipeline-state-object
into
develop
Overview
1
Commits
56
Pipelines
4
Changes
1
Merged
Mark Oliver Mints
requested to merge
11-pipeline-state-object
into
develop
3 years ago
Overview
1
Commits
56
Pipelines
4
Changes
1
Expand
Closes
#11 (closed)
Edited
3 years ago
by
Ghost User
0
0
Merge request reports
Viewing commit
0e4d5e8a
Prev
Next
Show latest version
1 file
+
31
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
0e4d5e8a
[
#16
][Doku] added documentation for class functions in SwapChain
· 0e4d5e8a
Katharina Krämer
authored
3 years ago
include/vkcv/SwapChain.hpp
+
31
−
5
Options
@@ -9,10 +9,19 @@ namespace vkcv {
private:
vk
::
SurfaceKHR
m_surface
;
vk
::
SwapchainKHR
m_swapchain
;
vk
::
SurfaceFormatKHR
m_format
;
SwapChain
(
vk
::
SurfaceKHR
surface
,
vk
::
SwapchainKHR
swapchain
,
vk
::
SurfaceFormatKHR
format
);
vk
::
SwapchainKHR
m_swapchain
;
vk
::
SurfaceFormatKHR
m_format
;
/**
* Constructor of a SwapChain object
* glfw is not initialized in this class because ist must be sure that there exists a context first
* glfw is already initialized by the window class
* @param surface used by the swapchain
* @param context of the application
* @param swapchain to show images in the window
* @param format
*/
SwapChain
(
vk
::
SurfaceKHR
surface
,
const
vkcv
::
Context
&
context
,
vk
::
SwapchainKHR
swapchain
,
vk
::
SurfaceFormatKHR
format
);
public:
SwapChain
(
const
SwapChain
&
other
)
=
default
;
@@ -25,13 +34,30 @@ namespace vkcv {
[[
nodiscard
]]
vk
::
SwapchainKHR
getSwapchain
();
/**
* gets the current surface object
* @return current surface
*/
[[
nodiscard
]]
vk
::
SurfaceKHR
getSurface
();
/**
* gets the current surface format
* @return gets the surface format
*/
[[
nodiscard
]]
vk
::
SurfaceFormatKHR
getSurfaceFormat
();
/**
* creates a swap chain object out of the given window and the given context
* @param window a wrapper that represents a glfw window
* @param context of the application
* @return returns an object of swapChain
*/
static
SwapChain
create
(
const
Window
&
window
,
const
Context
&
context
);
/**
* Destructor of SwapChain
*/
virtual
~
SwapChain
();
};
Loading