Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
eos
Commits
8d7b3a6e
Commit
8d7b3a6e
authored
Jan 06, 2017
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated includes
parent
0a5bad5b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
include/eos/render/Rasterizer.hpp
include/eos/render/Rasterizer.hpp
+6
-1
include/eos/render/SoftwareRenderer.hpp
include/eos/render/SoftwareRenderer.hpp
+2
-3
No files found.
include/eos/render/Rasterizer.hpp
View file @
8d7b3a6e
...
...
@@ -23,8 +23,13 @@
#define RASTERIZER_HPP_
#include "eos/render/detail/Vertex.hpp"
#include "eos/render/utils.hpp" // for Texture
// std includes
#include "opencv2/core/core.hpp"
#include "boost/optional.hpp"
#include <limits>
namespace
eos
{
namespace
render
{
...
...
include/eos/render/SoftwareRenderer.hpp
View file @
8d7b3a6e
...
...
@@ -37,7 +37,6 @@
#include "boost/optional.hpp"
#include <array>
#include <limits>
#include <memory>
/**
...
...
@@ -102,9 +101,9 @@ public:
* @ return The framebuffer (colourbuffer) with the rendered object.
*/
template
<
typename
T
,
glm
::
precision
P
=
glm
::
defaultp
>
cv
::
Mat
render
(
const
eos
::
core
::
Mesh
&
mesh
,
const
glm
::
tmat4x4
<
T
,
P
>&
model_view_matrix
,
cv
::
Mat
render
(
const
core
::
Mesh
&
mesh
,
const
glm
::
tmat4x4
<
T
,
P
>&
model_view_matrix
,
const
glm
::
tmat4x4
<
T
,
P
>&
projection_matrix
,
const
boost
::
optional
<
eos
::
render
::
Texture
>&
texture
=
boost
::
none
)
const
boost
::
optional
<
Texture
>&
texture
=
boost
::
none
)
{
assert
(
mesh
.
vertices
.
size
()
==
mesh
.
colors
.
size
()
||
mesh
.
colors
.
empty
());
// The number of vertices has to be equal for both shape and colour, or,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment