本文整理汇总了C++中GrContext::freeGpuResources方法的典型用法代码示例。如果您正苦于以下问题:C++ GrContext::freeGpuResources方法的具体用法?C++ GrContext::freeGpuResources怎么用?C++ GrContext::freeGpuResources使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GrContext
的用法示例。
在下文中一共展示了GrContext::freeGpuResources方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getGpuStats
void SKPBench::getGpuStats(SkCanvas* canvas, SkTArray<SkString>* keys, SkTArray<double>* values) {
#if SK_SUPPORT_GPU
// we do a special single draw and then dump the key / value pairs
GrContext* context = canvas->getGrContext();
if (!context) {
return;
}
// TODO refactor this out if we want to test other subclasses of skpbench
context->flush();
context->freeGpuResources();
context->resetContext();
context->getGpu()->resetShaderCacheForTesting();
draw_pic_for_stats(canvas, context, fPic, keys, values, "first_frame");
// draw second frame
draw_pic_for_stats(canvas, context, fPic, keys, values, "second_frame");
#endif
}