static void draw_picture(void* _context, const BPoint& where, int32 token) { DrawingContext* context = reinterpret_cast<DrawingContext *>(_context); ServerPicture* picture = context->GetPicture(token); if (picture != NULL) { context->PushState(); context->SetDrawingOrigin(where); context->PushState(); picture->Play(context); context->PopState(); context->PopState(); picture->ReleaseReference(); } }
static void push_state(void* _context) { DrawingContext* context = reinterpret_cast<DrawingContext *>(_context); context->PushState(); }