| 108 | } |
| 109 | |
| 110 | bool NoteLooper::DrawToPush2Screen() |
| 111 | { |
| 112 | ofRectangle rect = mCanvas->GetRect(true); |
| 113 | |
| 114 | mCanvas->SetPosition(125, 3); |
| 115 | mCanvas->SetDimensions(600, 40); |
| 116 | |
| 117 | mCanvas->SetCursorPos(GetCurPos(gTime)); |
| 118 | mCanvas->Draw(); |
| 119 | |
| 120 | mCanvas->SetPosition(rect.x, rect.y); |
| 121 | mCanvas->SetDimensions(rect.width, rect.height); |
| 122 | |
| 123 | return false; |
| 124 | } |
| 125 | |
| 126 | void NoteLooper::Resize(float w, float h) |
| 127 | { |
nothing calls this directly
no test coverage detected