initial import, >900commits predate this

This commit is contained in:
2020-09-29 13:47:50 +02:00
commit e74154ccee
352 changed files with 108120 additions and 0 deletions

View File

@ -0,0 +1,7 @@
(draft)
# OpenGL Renderer
This is a "Renderer" implementation. It hosts a `OpenGL::RenderTask` list, which get executed in order.
For `OpenGL::RenderTask`s see the [render_tasks folder](render_tasks/).

View File

@ -0,0 +1,6 @@
# `OpenGL::RenderTask` Blit FB
This `RenderTask` Blits(copys) the contents of one `FrameBuffer` to another.
There are options available for source and destination rectangle, color flags and filter mode.

View File

@ -0,0 +1,6 @@
# `OpenGL::RenderTask` Clear
This `RenderTask` calles glClear().
There are options available for clear color and color mask.

View File

@ -0,0 +1,4 @@
# `OpenGL::RenderTask` ImGuiRT
This `RenderTask` renders the ImGui render data.