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
Commits
3cf26d26
Commit
3cf26d26
authored
3 years ago
by
Sebastian Gaida
Browse files
Options
Downloads
Patches
Plain Diff
[
#16
][Fix] removed context out of swapchain constructor
parent
0e4d5e8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
4 merge requests
!12
Resolve "Swapchain Class"
,
!7
Resolve "Shader Program Class"
,
!5
Resolve "Pipeline State Object"
,
!4
Resolve "Renderpass Class"
Pipeline
#24733
passed
3 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vkcv/SwapChain.hpp
+1
-2
1 addition, 2 deletions
include/vkcv/SwapChain.hpp
with
1 addition
and
2 deletions
include/vkcv/SwapChain.hpp
+
1
−
2
View file @
3cf26d26
...
...
@@ -17,11 +17,10 @@ namespace vkcv {
* 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
);
SwapChain
(
vk
::
SurfaceKHR
surface
,
vk
::
SwapchainKHR
swapchain
,
vk
::
SurfaceFormatKHR
format
);
public:
SwapChain
(
const
SwapChain
&
other
)
=
default
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment