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

  /external/skia/src/gpu/
GrSwizzle.h 17 class GrSwizzle {
19 GrSwizzle() { *this = RGBA(); }
21 GrSwizzle(const GrSwizzle& that) { *this = that; }
23 GrSwizzle& operator=(const GrSwizzle& that) {
24 memcpy(this, &that, sizeof(GrSwizzle));
28 /** Recreates a GrSwizzle from the output of asKey() */
38 bool operator==(const GrSwizzle& that) const { return this->asUInt() == that.asUInt(); }
40 bool operator!=(const GrSwizzle& that) const { return !(*this == that);
    [all...]
GrGpu.h 14 #include "GrSwizzle.h"
166 GrSwizzle fSwizzle;
215 GrSwizzle fSwizzle;
GrContext.cpp 612 const GrSwizzle& swizzle,
627 const GrSwizzle& swizzle,
  /external/skia/src/gpu/effects/
GrConfigConversionEffect.h 12 #include "GrSwizzle.h"
36 static const GrFragmentProcessor* Create(GrTexture*, const GrSwizzle&, PMConversion,
41 const GrSwizzle& swizzle() const { return fSwizzle; }
55 const GrSwizzle&,
67 GrSwizzle fSwizzle;
GrConfigConversionEffect.cpp 21 const GrSwizzle& swizzle = cce.swizzle();
39 SkASSERT(GrSwizzle::RGBA() != swizzle);
98 const GrSwizzle& swizzle,
111 SkASSERT(swizzle != GrSwizzle::RGBA() || kNone_PMConversion != pmConversion);
130 GrSwizzle swizzle;
132 swizzle = GrSwizzle::CreateRandom(d->fRandom);
133 } while (pmConv == kNone_PMConversion && swizzle == GrSwizzle::RGBA());
217 dataTex, GrSwizzle::RGBA(), *pmToUPMRule, SkMatrix::I()));
219 readTex, GrSwizzle::RGBA(), *upmToPMRule, SkMatrix::I()));
221 tempTex, GrSwizzle::RGBA(), *pmToUPMRule, SkMatrix::I()))
    [all...]
  /external/skia/src/gpu/glsl/
GrGLSLCaps.h 14 #include "GrSwizzle.h"
131 const GrSwizzle& configTextureSwizzle(GrPixelConfig config) const {
136 const GrSwizzle& configOutputSwizzle(GrPixelConfig config) const {
181 GrSwizzle fConfigTextureSwizzle[kGrPixelConfigCnt];
182 GrSwizzle fConfigOutputSwizzle[kGrPixelConfigCnt];
GrGLSLProgramBuilder.cpp 203 GrSwizzle swizzle;
205 if (swizzle != GrSwizzle::RGBA()) {
GrGLSLShaderBuilder.cpp 8 #include "GrSwizzle.h"
93 const GrSwizzle& configSwizzle = glslCaps->configTextureSwizzle(sampler.config());
95 if (configSwizzle != GrSwizzle::RGBA()) {
  /external/skia/include/gpu/
GrContext.h 46 class GrSwizzle;
428 const GrFragmentProcessor* createPMToUPMEffect(GrTexture*, const GrSwizzle&,
430 const GrFragmentProcessor* createUPMToPMEffect(GrTexture*, const GrSwizzle&,
  /external/skia/src/gpu/vk/
GrVkCaps.cpp 117 glslCaps->fConfigTextureSwizzle[i] = GrSwizzle::RRRR();
118 glslCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
120 glslCaps->fConfigTextureSwizzle[i] = GrSwizzle::RGBA();
  /external/skia/src/gpu/gl/
GrGLCaps.cpp     [all...]
GrGLCaps.h 17 #include "GrSwizzle.h"
137 const GrSwizzle& configSwizzle(GrPixelConfig config) const {
488 GrSwizzle fSwizzle;
GrGLGpu.h 29 class GrSwizzle;
236 void flushBlend(const GrXferProcessor::BlendInfo& blendInfo, const GrSwizzle&);
GrGLGpu.cpp 746 tempDrawInfo->fSwizzle = GrSwizzle::RGBA();
764 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
770 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
778 tempDrawInfo->fSwizzle = GrSwizzle::BGRA();
    [all...]

Completed in 514 milliseconds