Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Game Library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Onuralp SEZER
Game Library
Commits
a080fc49
Commit
a080fc49
authored
2 years ago
by
Joseph Walton-Rivers
Browse files
Options
Downloads
Patches
Plain Diff
comments for OGL4 backend
parent
e646c7cb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/fggl/gfx/ogl/renderer.hpp
+37
-0
37 additions, 0 deletions
include/fggl/gfx/ogl/renderer.hpp
with
37 additions
and
0 deletions
include/fggl/gfx/ogl/renderer.hpp
+
37
−
0
View file @
a080fc49
...
@@ -43,6 +43,13 @@ namespace fggl::gfx {
...
@@ -43,6 +43,13 @@ namespace fggl::gfx {
float
total
;
float
total
;
};
};
/**
* Class responsible for managing the OpenGL context.
*
* This class manages the OpenGL resources, all OpenGL resources are bound by its lifetime, and it is ultimately
* the class responsible for interacting with OpenGL. It is bound by the window it belongs to, and therefore if
* that window disappears so does this object.
*/
class
OpenGL4Backend
:
public
Graphics
{
class
OpenGL4Backend
:
public
Graphics
{
public:
public:
explicit
OpenGL4Backend
(
const
Window
&
owner
);
explicit
OpenGL4Backend
(
const
Window
&
owner
);
...
@@ -52,12 +59,42 @@ namespace fggl::gfx {
...
@@ -52,12 +59,42 @@ namespace fggl::gfx {
OpenGL4Backend
(
const
OpenGL4Backend
&
)
=
delete
;
OpenGL4Backend
(
const
OpenGL4Backend
&
)
=
delete
;
OpenGL4Backend
&
operator
=
(
const
OpenGL4Backend
&
)
=
delete
;
OpenGL4Backend
&
operator
=
(
const
OpenGL4Backend
&
)
=
delete
;
// move (probably) bad
OpenGL4Backend
(
OpenGL4Backend
&&
)
=
delete
;
OpenGL4Backend
&&
operator
=
(
OpenGL4Backend
&&
)
=
delete
;
/**
* Clear the backing buffer.
*/
void
clear
()
override
;
void
clear
()
override
;
/**
* Notify the graphics system the framebuffer size has changed.
*
* @param width the new framebuffer width
* @param height the new framebuffer height
*/
void
resize
(
int
width
,
int
height
)
override
;
void
resize
(
int
width
,
int
height
)
override
;
/**
* Perform a 2D rendering pass.
*
* @param paint the objects to paint on screen
*/
void
draw2D
(
const
Paint
&
paint
)
override
;
void
draw2D
(
const
Paint
&
paint
)
override
;
/**
* Perform a 3D rendering pass.
*
* @param world the world to render
*/
void
drawScene
(
ecs3
::
World
&
world
)
override
;
void
drawScene
(
ecs3
::
World
&
world
)
override
;
/**
* Get the 2D canvas bounds.
*
* @return
*/
inline
Bounds
canvasBounds
()
override
{
inline
Bounds
canvasBounds
()
override
{
return
m_canvasRenderer
->
bounds
();
return
m_canvasRenderer
->
bounds
();
}
}
...
...
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