HomeSort by relevance Sort by last modified time
    Searched defs:GrProcessor (Results 1 - 2 of 2) sorted by null

  /external/skia/src/gpu/
GrProcessor.cpp 8 #include "GrProcessor.h"
119 int32_t GrProcessor::gCurrProcessorClassID = GrProcessor::kIllegalProcessorClassID;
123 GrProcessor::~GrProcessor() {}
125 void GrProcessor::addTextureSampler(const TextureSampler* access) {
129 void GrProcessor::addBufferAccess(const BufferAccess* access) {
133 void GrProcessor::addImageStorageAccess(const ImageStorageAccess* access) {
137 void GrProcessor::addPendingIOs() const {
149 void GrProcessor::removeRefs() const
    [all...]
  /external/skia/include/gpu/
GrProcessor.h 58 /** Provides custom shader code to the Ganesh shading pipeline. GrProcessor objects *must* be
64 class GrProcessor : public GrProgramElement<GrProcessor> {
70 virtual ~GrProcessor();
125 /** Helper for down-casting to a GrProcessor subclass */
131 GrProcessor() : fClassID(kIllegalProcessorClassID), fRequiredFeatures(kNone_RequiredFeatures) {}
136 * TextureSampler and/or BufferAccess instances are typically member fields of the GrProcessor
143 bool hasSameSamplersAndAccesses(const GrProcessor &) const;
152 void combineRequiredFeatures(const GrProcessor& other) {
168 SkFAIL("This should never wrap as it should only be called once for each GrProcessor "
    [all...]

Completed in 83 milliseconds