Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb Sample Visualizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
Pascal Engeler
RBComb Sample Visualizer
Commits
cf3edaf5
Commit
cf3edaf5
authored
9 months ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Switched shader loading to .ini loaded paths
parent
054bff31
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gui/src/layer.cpp
+4
-2
4 additions, 2 deletions
gui/src/layer.cpp
with
4 additions
and
2 deletions
gui/src/layer.cpp
+
4
−
2
View file @
cf3edaf5
...
...
@@ -6,6 +6,7 @@
#include
<shader.hpp>
#include
<metadata_manager.hpp>
#include
<material.hpp>
#include
<INIReader.h>
Layer
::
Layer
(
std
::
string
name
,
std
::
string
filename
,
float
zOffset
,
Material
mat
)
:
_name
(
name
),
_zOffset
(
zOffset
)
{
//read data from file into vertex buffer, element buffer
...
...
@@ -106,8 +107,9 @@ Layer::Layer(std::string name, std::string filename, float zOffset, Material mat
glBindBuffer
(
GL_ARRAY_BUFFER
,
0
);
//setup shader
std
::
string
vertFile
=
std
::
string
(
SHADER_LOC
)
+
std
::
string
(
"objectShader.vert"
);
std
::
string
fragFile
=
std
::
string
(
SHADER_LOC
)
+
std
::
string
(
"objectShader.frag"
);
INIReader
inireader
(
"config.ini"
);
std
::
string
vertFile
=
inireader
.
GetString
(
"paths"
,
"pathShaders"
,
"NONE"
)
+
std
::
string
(
"objectShader.vert"
);
std
::
string
fragFile
=
inireader
.
GetString
(
"paths"
,
"pathShaders"
,
"NONE"
)
+
std
::
string
(
"objectShader.frag"
);
_shader
=
Shader
(
vertFile
.
c_str
(),
fragFile
.
c_str
());
_shader
.
use
();
_shader
.
setFloat
(
"z_offset"
,
_zOffset
);
...
...
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