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

  /external/chromium_org/third_party/skia/src/gpu/
GrProcessor.cpp 8 #include "GrProcessor.h"
56 GrProcessor::~GrProcessor() {}
58 const char* GrProcessor::name() const {
62 void GrProcessor::addCoordTransform(const GrCoordTransform* transform) {
67 void GrProcessor::addTextureAccess(const GrTextureAccess* access) {
72 void* GrProcessor::operator new(size_t size) {
76 void GrProcessor::operator delete(void* target) {
81 void GrProcessor::assertEquality(const GrProcessor& other) const
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrProcessor.h 28 GrProcessor objects *must* be immutable: after being constructed, their fields may not change.
34 class GrProcessor : public GrProgramElement {
36 SK_DECLARE_INST_COUNT(GrProcessor)
38 virtual ~GrProcessor();
51 GrTBackendEffectFactory. It is templated on the subclass of GrProcessor. The subclass must
56 class MyCustomEffect : public GrProcessor {
74 bool isEqual(const GrProcessor& other) const {
120 * Helper for down-casting to a GrProcessor subclass
128 * pointer). The GrCoordTransform is typically a member field of the GrProcessor subclass. When
138 * GrTextureAccess is typically a member field of the GrProcessor subclass. This must only b
    [all...]

Completed in 47 milliseconds