mirror of https://github.com/adamdruppe/arsd.git
Add commented out outline of `SoftwarePixmapRenderer`
This commit is contained in:
parent
4d74f70ddd
commit
122e60da83
|
|
@ -838,6 +838,40 @@ final class OpenGl1PixmapRenderer : PixmapRenderer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/+
|
||||||
|
/++
|
||||||
|
Purely software renderer
|
||||||
|
+/
|
||||||
|
final class SoftwarePixmapRenderer : PixmapRenderer {
|
||||||
|
|
||||||
|
private {
|
||||||
|
PresenterObjectsContainer* _poc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public WantsOpenGl wantsOpenGl() @safe pure nothrow @nogc {
|
||||||
|
return WantsOpenGl(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setup(PresenterObjectsContainer* container) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public void reconfigure() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/++
|
||||||
|
Schedules a redraw
|
||||||
|
+/
|
||||||
|
public void redrawSchedule() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/++
|
||||||
|
Triggers a redraw
|
||||||
|
+/
|
||||||
|
public void redrawNow() {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
+/
|
||||||
|
|
||||||
///
|
///
|
||||||
struct LoopCtrl {
|
struct LoopCtrl {
|
||||||
int interval; /// in milliseconds
|
int interval; /// in milliseconds
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue