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
!67
Resolve "Mipmapping"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Mipmapping"
55-mipmapping
into
develop
Overview
0
Commits
6
Pipelines
7
Changes
13
Merged
Ghost User
requested to merge
55-mipmapping
into
develop
3 years ago
Overview
0
Commits
6
Pipelines
7
Changes
13
Expand
Closes
#55 (closed)
Edited
3 years ago
by
Tobias Frisch
0
0
Merge request reports
Compare
develop
version 5
81f366ad
3 years ago
version 4
9bfce11c
3 years ago
version 3
e74a10f4
3 years ago
version 2
79570906
3 years ago
version 1
8c0c19c0
3 years ago
develop (base)
and
latest version
latest version
fa5cbde8
6 commits,
3 years ago
version 5
81f366ad
5 commits,
3 years ago
version 4
9bfce11c
4 commits,
3 years ago
version 3
e74a10f4
3 commits,
3 years ago
version 2
79570906
2 commits,
3 years ago
version 1
8c0c19c0
1 commit,
3 years ago
13 files
+
240
−
99
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
include/vkcv/Core.hpp
+
9
−
3
Options
@@ -41,7 +41,6 @@ namespace vkcv
QueueType
queueType
;
std
::
vector
<
vk
::
Semaphore
>
waitSemaphores
;
std
::
vector
<
vk
::
Semaphore
>
signalSemaphores
;
vk
::
Fence
fence
;
};
class
Core
final
@@ -215,7 +214,14 @@ namespace vkcv
* @return Image-Object
*/
[[
nodiscard
]]
Image
createImage
(
vk
::
Format
format
,
uint32_t
width
,
uint32_t
height
,
uint32_t
depth
=
1
,
bool
supportStorage
=
false
,
bool
supportColorAttachment
=
false
);
Image
createImage
(
vk
::
Format
format
,
uint32_t
width
,
uint32_t
height
,
uint32_t
depth
=
1
,
bool
createMipChain
=
false
,
bool
supportStorage
=
false
,
bool
supportColorAttachment
=
false
);
/** TODO:
* @param setDescriptions
@@ -261,7 +267,7 @@ namespace vkcv
* @param record Record-command-function
* @param finish Finish-command-function or nullptr
*/
void
recordAndSubmitCommands
(
void
recordAndSubmitCommands
Immediate
(
const
SubmitInfo
&
submitInfo
,
const
RecordCommandFunction
&
record
,
const
FinishCommandFunction
&
finish
);
Loading