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
8f3645df
Commit
8f3645df
authored
3 years ago
by
Sebastian Gaida
Browse files
Options
Downloads
Patches
Plain Diff
[
#34
][Fix] fix MSVC compilation
shut up msvc it was a feature not a bug....
parent
25c4b97e
No related branches found
No related tags found
1 merge request
!43
Resolve "Resizing-Event"
Pipeline
#25354
passed
3 years ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/vkcv/SwapChain.hpp
+1
-1
1 addition, 1 deletion
include/vkcv/SwapChain.hpp
src/vkcv/SwapChain.cpp
+1
-1
1 addition, 1 deletion
src/vkcv/SwapChain.cpp
with
2 additions
and
2 deletions
include/vkcv/SwapChain.hpp
+
1
−
1
View file @
8f3645df
...
...
@@ -71,7 +71,7 @@ namespace vkcv {
* @param width
* @param height
*/
v
k
::
SwapchainKHR
recreateSwapchain
(
const
Context
&
context
,
const
Window
&
window
,
int
width
,
int
height
);
v
oid
recreateSwapchain
(
const
Context
&
context
,
const
Window
&
window
,
int
width
,
int
height
);
};
}
This diff is collapsed.
Click to expand it.
src/vkcv/SwapChain.cpp
+
1
−
1
View file @
8f3645df
...
...
@@ -160,7 +160,7 @@ namespace vkcv {
return
SwapChain
(
surface
,
swapchain
,
surfaceFormat
,
imageCount
,
presentMode
);
}
v
k
::
SwapchainKHR
SwapChain
::
recreateSwapchain
(
const
Context
&
context
,
const
Window
&
window
,
int
width
,
int
height
){
v
oid
SwapChain
::
recreateSwapchain
(
const
Context
&
context
,
const
Window
&
window
,
int
width
,
int
height
){
vk
::
SwapchainKHR
oldSwapchain
=
m_swapchain
;
vk
::
Extent2D
extent2D
=
chooseSwapExtent
(
context
.
getPhysicalDevice
(),
m_surface
,
window
);
...
...
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