mirror of
https://github.com/adamdruppe/arsd.git
synced 2025-04-26 05:10:01 +03:00
Add commented out outline of SoftwarePixmapRenderer
This commit is contained in:
parent
4d74f70ddd
commit
122e60da83
1 changed files with 34 additions and 0 deletions
|
@ -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 {
|
||||
int interval; /// in milliseconds
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue