Merge "Add a system property to control Skia reduceOpsTaskSplitting" into sc-dev

This commit is contained in:
Adlai Holler
2021-03-25 16:17:09 +00:00
committed by Android (Google) Code Review
2 changed files with 12 additions and 0 deletions

View File

@@ -40,6 +40,7 @@
#include <utils/Mutex.h>
#include <thread>
#include <android-base/properties.h>
#include <ui/FatVector.h>
namespace android {
@@ -251,6 +252,11 @@ void RenderThread::requireVkContext() {
void RenderThread::initGrContextOptions(GrContextOptions& options) {
options.fPreferExternalImagesOverES3 = true;
options.fDisableDistanceFieldPaths = true;
if (android::base::GetBoolProperty(PROPERTY_REDUCE_OPS_TASK_SPLITTING, false)) {
options.fReduceOpsTaskSplitting = GrContextOptions::Enable::kYes;
} else {
options.fReduceOpsTaskSplitting = GrContextOptions::Enable::kNo;
}
}
void RenderThread::destroyRenderingContext() {

View File

@@ -38,6 +38,12 @@
#include "thread/ThreadBase.h"
#include "utils/TimeUtils.h"
/**
* (Bool) Turns on the Skia GPU option "reduceOpsTaskSplitting" which improves GPU
* efficiency but may increase VRAM consumption. Default is false.
*/
#define PROPERTY_REDUCE_OPS_TASK_SPLITTING "renderthread.skia.reduceopstasksplitting"
namespace android {
class Bitmap;