aboutsummaryrefslogtreecommitdiff
path: root/unicorn/RealUnicorn2.go
diff options
context:
space:
mode:
Diffstat (limited to 'unicorn/RealUnicorn2.go')
-rw-r--r--unicorn/RealUnicorn2.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/unicorn/RealUnicorn2.go b/unicorn/RealUnicorn2.go
index 991e79f..861b1d5 100644
--- a/unicorn/RealUnicorn2.go
+++ b/unicorn/RealUnicorn2.go
@@ -60,6 +60,12 @@ func NewUnicorn2() (*RealUnicorn2, error) {
}, nil
}
+// StartRender ...
+// Passes through to base to actually do the render
+func (u *RealUnicorn2) StartRender() chan bool {
+ return u.StartRenderBase(u.renderImage)
+}
+
// MainLoop ...
// Just blocks until sigterm
func (u *RealUnicorn2) MainLoop() {