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
b518eb83
Commit
b518eb83
authored
3 years ago
by
Trevor Hollmann
Browse files
Options
Downloads
Patches
Plain Diff
[
#79
] Move FIXME/TODO comments to gitlab issue.
parent
22e7f565
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!69
Resolve "Rework Asset Loader API"
Pipeline
#26410
passed
3 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/asset_loader/src/vkcv/asset/asset_loader.cpp
+1
-5
1 addition, 5 deletions
modules/asset_loader/src/vkcv/asset/asset_loader.cpp
with
1 addition
and
5 deletions
modules/asset_loader/src/vkcv/asset/asset_loader.cpp
+
1
−
5
View file @
b518eb83
...
@@ -121,7 +121,7 @@ int createTextures(const std::vector<fx::gltf::Texture>& tex_src,
...
@@ -121,7 +121,7 @@ int createTextures(const std::vector<fx::gltf::Texture>& tex_src,
return
ASSET_ERROR
;
return
ASSET_ERROR
;
}
}
}
}
c
=
4
;
// FIXME hardcoded to always have RGBA channel layout
c
=
4
;
const
size_t
nbytes
=
w
*
h
*
c
;
const
size_t
nbytes
=
w
*
h
*
c
;
std
::
vector
<
uint8_t
>
imgdata
;
std
::
vector
<
uint8_t
>
imgdata
;
imgdata
.
resize
(
nbytes
);
imgdata
.
resize
(
nbytes
);
...
@@ -448,7 +448,6 @@ int createVertexGroups(fx::gltf::Mesh const& objectMesh,
...
@@ -448,7 +448,6 @@ int createVertexGroups(fx::gltf::Mesh const& objectMesh,
}
}
const
uint32_t
relevantBufferSize
=
relevantBufferEnd
-
relevantBufferOffset
;
const
uint32_t
relevantBufferSize
=
relevantBufferEnd
-
relevantBufferOffset
;
// FIXME: This only works when all vertex attributes are in one buffer
std
::
vector
<
uint8_t
>
vertexBufferData
;
std
::
vector
<
uint8_t
>
vertexBufferData
;
if
(
!
probe
)
{
if
(
!
probe
)
{
vertexBufferData
.
resize
(
relevantBufferSize
);
vertexBufferData
.
resize
(
relevantBufferSize
);
...
@@ -748,9 +747,6 @@ int probeScene(const std::filesystem::path& path, Scene& scene) {
...
@@ -748,9 +747,6 @@ int probeScene(const std::filesystem::path& path, Scene& scene) {
}
}
// TODO Do we want to _extend_ the given scene with the newly loaded mesh or do
// we want to _clear_ the scene such that the result will always be an empty
// scene with only the given mesh (and associated textures etc)?
int
loadMesh
(
const
std
::
filesystem
::
path
&
path
,
const
std
::
string
&
name
,
Scene
&
scene
)
{
int
loadMesh
(
const
std
::
filesystem
::
path
&
path
,
const
std
::
string
&
name
,
Scene
&
scene
)
{
fx
::
gltf
::
Document
sceneObjects
;
fx
::
gltf
::
Document
sceneObjects
;
...
...
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