open_toontown_panda3d/panda/src/gobj/animateVerticesRequest.cxx

38 lines
1.3 KiB
C++

// Filename: animateVerticesRequest.cxx
// Created by: pratt (20Nov07)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
#include "animateVerticesRequest.h"
#include "geomVertexData.h"
TypeHandle AnimateVerticesRequest::_type_handle;
////////////////////////////////////////////////////////////////////
// Function: AnimateVerticesRequest::do_task
// Access: Protected, Virtual
// Description: Performs the task: that is, calls animate vertices
// on _geom_vertex_data.
////////////////////////////////////////////////////////////////////
AsyncTask::DoneStatus AnimateVerticesRequest::
do_task() {
Thread *current_thread = Thread::get_current_thread();
// There is no need to store or return a result. The GeomVertexData caches
// the result and it will be used later in the rendering process.
_geom_vertex_data->animate_vertices(true, current_thread);
_is_ready = true;
// Don't continue the task; we're done.
return AsyncTask::DS_done;
}