HomeSort by relevance Sort by last modified time
    Searched refs:CustomFeatures (Results 1 - 7 of 7) sorted by null

  /external/skia/src/gpu/glsl/
GrGLSLFragmentShaderBuilder.h 53 * CustomFeatures::kSampleLocations.
135 using CustomFeatures = GrProcessor::CustomFeatures;
148 CustomFeatures fUsedProcessorFeaturesThisStage_DebugOnly = CustomFeatures::kNone;
149 CustomFeatures fUsedProcessorFeaturesAllStages_DebugOnly = CustomFeatures::kNone;
153 fUsedProcessorFeaturesThisStage_DebugOnly = CustomFeatures::kNone;
GrGLSLFragmentShaderBuilder.cpp 88 SkASSERT(CustomFeatures::kSampleLocations & fProgramBuilder->header().processorFeatures());
89 SkDEBUGCODE(fUsedProcessorFeaturesThisStage_DebugOnly |= CustomFeatures::kSampleLocations);
90 SkDEBUGCODE(fUsedProcessorFeaturesAllStages_DebugOnly |= CustomFeatures::kSampleLocations);
219 if (CustomFeatures::kSampleLocations & fProgramBuilder->header().processorFeatures()) {
GrGLSLProgramBuilder.h 44 SkASSERT(GrProcessor::CustomFeatures::kSampleLocations & header().processorFeatures());
  /external/skia/src/gpu/
GrProcessor.h 197 enum class CustomFeatures {
202 GR_DECL_BITFIELD_CLASS_OPS_FRIENDS(CustomFeatures);
204 CustomFeatures requestedFeatures() const { return fRequestedFeatures; }
226 void setWillUseCustomFeature(CustomFeatures feature) { fRequestedFeatures |= feature; }
229 CustomFeatures fRequestedFeatures = CustomFeatures::kNone;
232 GR_MAKE_BITFIELD_CLASS_OPS(GrProcessor::CustomFeatures);
GrProgramDesc.h 93 GrProcessor::CustomFeatures processorFeatures() const {
94 return (GrProcessor::CustomFeatures)fProcessorFeatures;
GrProgramDesc.cpp 207 GrProcessor::CustomFeatures processorFeatures = primProc.requestedFeatures();
232 if (processorFeatures & GrProcessor::CustomFeatures::kSampleLocations) {
  /external/skia/gm/
samplelocations.cpp 62 this->setWillUseCustomFeature(CustomFeatures::kSampleLocations);

Completed in 438 milliseconds