Skip to content

Commit

Permalink
[render] rename to DerivedRenderApp in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
alemuntoni committed Feb 14, 2025
1 parent 580f67e commit 6f0dfa1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

#include <vclib/render/drawers/plain_drawer.h>

template<typename DerivedDrawer>
class HelloTriangleDrawer : public vcl::PlainDrawer<DerivedDrawer>
template<typename DerivedRenderApp>
class HelloTriangleDrawer : public vcl::PlainDrawer<DerivedRenderApp>
{
public:
HelloTriangleDrawer(vcl::uint width = 1024, vcl::uint height = 768) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

#include <vclib/render/drawers/plain_drawer.h>

template<typename DerivedDrawer>
class HelloTriangleDrawer : public vcl::PlainDrawer<DerivedDrawer>
template<typename DerivedRenderApp>
class HelloTriangleDrawer : public vcl::PlainDrawer<DerivedRenderApp>
{
public:
HelloTriangleDrawer(vcl::uint width = 1024, vcl::uint height = 768) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

#include <vclib/render/drawers/plain_drawer.h>

template<typename DerivedDrawer>
class HelloTriangleDrawer : public vcl::PlainDrawer<DerivedDrawer>
template<typename DerivedRenderApp>
class HelloTriangleDrawer : public vcl::PlainDrawer<DerivedRenderApp>
{
public:
HelloTriangleDrawer(vcl::uint width = 1024, vcl::uint height = 768) {}
Expand Down
2 changes: 2 additions & 0 deletions vclib/render/todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@
- [X] change DesktopTrackball & ViewerI API to enable direct access to the Trackball functionalities + possible major class restructuring (REFACTORING IN PROGRESS)
- [ ] update documentation of Canvas & co.
- [ ] implement screenshot custom size (split rendering into multiple tiles)
- [ ] move MeshViewerImguiDrawer into library
- [ ] move example 07 mesh-viewer-imgui in example 02

0 comments on commit 6f0dfa1

Please sign in to comment.