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
a285604e
Verified
Commit
a285604e
authored
3 years ago
by
Tobias Frisch
Browse files
Options
Downloads
Patches
Plain Diff
[
#82
] Removed debug prints
Signed-off-by:
Tobias Frisch
<
tfrisch@uni-koblenz.de
>
parent
e7f8c46f
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!70
Resolve "Voxel cone tracing"
Pipeline
#26154
passed
3 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
projects/voxelization/src/main.cpp
+0
-16
0 additions, 16 deletions
projects/voxelization/src/main.cpp
with
0 additions
and
16 deletions
projects/voxelization/src/main.cpp
+
0
−
16
View file @
a285604e
...
@@ -550,14 +550,6 @@ int main(int argc, const char** argv) {
...
@@ -550,14 +550,6 @@ int main(int argc, const char** argv) {
if
(
!
core
.
beginFrame
(
swapchainWidth
,
swapchainHeight
))
{
if
(
!
core
.
beginFrame
(
swapchainWidth
,
swapchainHeight
))
{
continue
;
continue
;
}
}
if
((
swapchainWidth
<
2
)
||
(
swapchainHeight
<
2
))
{
std
::
cerr
<<
"A"
<<
std
::
endl
;
}
if
((
windowWidth
<
2
)
||
(
windowHeight
<
2
))
{
std
::
cerr
<<
"B"
<<
std
::
endl
;
}
if
((
swapchainWidth
!=
windowWidth
)
||
((
swapchainHeight
!=
windowHeight
)))
{
if
((
swapchainWidth
!=
windowWidth
)
||
((
swapchainHeight
!=
windowHeight
)))
{
depthBuffer
=
core
.
createImage
(
depthBufferFormat
,
swapchainWidth
,
swapchainHeight
,
1
,
false
,
false
,
false
,
msaa
).
getHandle
();
depthBuffer
=
core
.
createImage
(
depthBufferFormat
,
swapchainWidth
,
swapchainHeight
,
1
,
false
,
false
,
false
,
msaa
).
getHandle
();
...
@@ -575,14 +567,6 @@ int main(int argc, const char** argv) {
...
@@ -575,14 +567,6 @@ int main(int argc, const char** argv) {
bloomFlares
.
updateImageDimensions
(
windowWidth
,
windowHeight
);
bloomFlares
.
updateImageDimensions
(
windowWidth
,
windowHeight
);
}
}
if
((
swapchainWidth
<
2
)
||
(
swapchainHeight
<
2
))
{
std
::
cerr
<<
"C"
<<
std
::
endl
;
}
if
((
windowWidth
<
2
)
||
(
windowHeight
<
2
))
{
std
::
cerr
<<
"D"
<<
std
::
endl
;
}
auto
end
=
std
::
chrono
::
system_clock
::
now
();
auto
end
=
std
::
chrono
::
system_clock
::
now
();
auto
deltatime
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
microseconds
>
(
end
-
start
);
auto
deltatime
=
std
::
chrono
::
duration_cast
<
std
::
chrono
::
microseconds
>
(
end
-
start
);
...
...
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