diff options
Diffstat (limited to 'src/gpu/GrPipeline.cpp')
-rw-r--r-- | src/gpu/GrPipeline.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpu/GrPipeline.cpp b/src/gpu/GrPipeline.cpp index 7767bf220d..c60a94be7e 100644 --- a/src/gpu/GrPipeline.cpp +++ b/src/gpu/GrPipeline.cpp @@ -48,6 +48,9 @@ GrPipeline* GrPipeline::CreateAt(void* memory, const CreateArgs& args, if (builder.getAllowSRGBInputs()) { pipeline->fFlags |= kAllowSRGBInputs_Flag; } + if (builder.getUsesDistanceVectorField()) { + pipeline->fFlags |= kUsesDistanceVectorField_Flag; + } if (args.fHasStencilClip) { pipeline->fFlags |= kHasStencilClip_Flag; } |