Numworks Epsilon  1.4.1
Graphing Calculator Operating System
ion_context.h
Go to the documentation of this file.
1 #ifndef KANDINSKY_ION_CONTEXT_H
2 #define KANDINSKY_ION_CONTEXT_H
3 
4 #include <kandinsky/context.h>
5 
6 class KDIonContext : public KDContext {
7 public:
8  static KDIonContext * sharedContext();
9 private:
10  KDIonContext();
11  void pushRect(KDRect rect, const KDColor * pixels) override;
12  void pushRectUniform(KDRect rect, KDColor color) override;
13  void pullRect(KDRect rect, KDColor * pixels) override;
14 };
15 
16 #endif
static KDIonContext * sharedContext()
Definition: ion_context.cpp:4
Definition: rect.h:26
Definition: color.h:6