Lines Matching full:model
168 // select the drawing model based on user input
169 ANPDrawingModel model = kBitmap_ANPDrawingModel;
174 model = kBitmap_ANPDrawingModel;
177 model = kSurface_ANPDrawingModel;
179 gLogI.log(kDebug_ANPLogType, "------ %p DrawingModel is %d", instance, model);
184 // notify the plugin API of the drawing model we wish to use. This must be
187 reinterpret_cast<void*>(model));
189 gLogI.log(kError_ANPLogType, "request model %d err %d", model, err);
243 // check to ensure the pluginType supports the model
244 if (!obj->activePlugin->supportsDrawingModel(model)) {
245 gLogI.log(kError_ANPLogType, "------ %p Unsupported DrawingModel (%d)", instance, model);
249 // if the plugin uses the surface drawing model then set the java context
250 if (model == kSurface_ANPDrawingModel) {
331 if (evt->data.draw.model == kBitmap_ANPDrawingModel) {