HomeSort by relevance Sort by last modified time
    Searched refs:fConfig (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/skia/tests/
BitmapGetColorTest.cpp 16 SkBitmap::Config fConfig;
39 bm.setConfig(gRec[i].fConfig, 2, 2);
GpuBitmapCopyTest.cpp 32 SkBitmap::Config fConfig;
131 SkGpuDevice* device = SkNEW_ARGS(SkGpuDevice, (grContext, gPairs[i].fConfig, W, H));
150 bool success = src.deepCopyTo(&dst, gPairs[j].fConfig);
160 bool canSucceed = src.canCopyTo(gPairs[j].fConfig);
170 TestIndividualCopy(reporter, gPairs[j].fConfig, success, src, dst);
175 success = subset.copyTo(&subsetCopy, gPairs[j].fConfig);
178 TestIndividualCopy(reporter, gPairs[j].fConfig, success, subset, subsetCopy,
183 success = subset.deepCopyTo(&subsetCopy, gPairs[j].fConfig);
186 TestIndividualCopy(reporter, gPairs[j].fConfig, success, subset, subsetCopy,
ReadWriteAlphaTest.cpp 39 desc.fConfig = kAlpha_8_GrPixelConfig;
59 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
68 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
96 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
BitmapCopyTest.cpp 75 SkBitmap::Config fConfig;
233 srcOpaque.setConfig(gPairs[i].fConfig, W, H, 0, kOpaque_SkAlphaType);
234 srcPremul.setConfig(gPairs[i].fConfig, W, H, 0, kPremul_SkAlphaType);
235 if (SkBitmap::kIndex8_Config == gPairs[i].fConfig) {
247 bool success = srcPremul.copyTo(&dst, gPairs[j].fConfig);
257 bool canSucceed = srcPremul.canCopyTo(gPairs[j].fConfig);
269 REPORTER_ASSERT(reporter, dst.config() == gPairs[j].fConfig);
344 tstSafeSize.setConfig(gPairs[i].fConfig, 100000000U,
355 switch (gPairs[i].fConfig) {
396 src.setConfig(gPairs[i].fConfig, 2 * subW + 1, subH)
    [all...]
GrSurfaceTest.cpp 25 desc.fConfig = kSkia8888_GrPixelConfig;
45 backendDesc.fConfig = kSkia8888_GrPixelConfig;
PixelRefTest.cpp 9 SkBitmap::Config fConfig;
30 bool success = bitmap.setConfig(gRec[i].fConfig, 10, 10, 0, gRec[i].fAlphaType);
  /external/skia/dm/
DMCpuTask.h 37 const SkBitmap::Config fConfig;
DMCpuTask.cpp 23 , fConfig(config)
28 SetupBitmap(fConfig, fGM.get(), &bitmap);
51 if (SkBitmap::kRGB_565_Config == fConfig && (fGM->getFlags() & skiagm::GM::kSkip565_Flag)) {
DMGpuTask.cpp 24 , fConfig(config)
45 fConfig,
56 bitmap.setConfig(fConfig, SkScalarCeilToInt(fGM->width()), SkScalarCeilToInt(fGM->height()));
DMGpuTask.h 38 const SkBitmap::Config fConfig;
  /external/skia/bench/
WritePixelsBench.cpp 17 : fConfig(config)
59 canvas->writePixels(bmp, 0, 0, fConfig);
64 SkCanvas::Config8888 fConfig;
RepeatTileBench.cpp 93 SkBitmap::Config fConfig;
98 fConfig = c;
101 if (SkBitmap::kIndex8_Config == fConfig) {
104 fBitmap.setConfig(fConfig, w, h);
123 if (SkBitmap::kIndex8_Config == fConfig) {
ResultsWriter.h 107 , fConfig(NULL) {
117 fConfig = &(*fBench)[name];
120 SkASSERT(NULL != fConfig);
121 (*fConfig)[name] = ms;
133 Json::Value* fConfig;
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLRenderTarget.cpp 35 temp.fConfig = config;
53 desc.fConfig, desc.fSampleCnt,
76 desc.fConfig, desc.fSampleCnt,
GrGLRenderTarget.h 32 GrPixelConfig fConfig;
  /external/skia/src/gpu/gl/
GrGLRenderTarget.cpp 35 temp.fConfig = config;
53 desc.fConfig, desc.fSampleCnt,
76 desc.fConfig, desc.fSampleCnt,
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 94 Config config() const { return (Config)fConfig; }
377 /** Return the bitmap's colortable, if it uses one (i.e. fConfig is
672 uint8_t fConfig;
787 SkASSERT(fConfig == kARGB_8888_Config);
794 SkASSERT(fConfig == kRGB_565_Config || fConfig == kARGB_4444_Config);
801 SkASSERT(fConfig == kA8_Config || fConfig == kIndex8_Config);
808 SkASSERT(fConfig == kIndex8_Config);
  /external/chromium_org/third_party/skia/src/gpu/
GrRenderTarget.cpp 59 if (kUnknown_GrPixelConfig == fDesc.fConfig) {
62 colorBits = GrBytesPerPixel(fDesc.fConfig);
SkGr.cpp 88 desc->fConfig = SkBitmapConfig2GrPixelConfig(bitmap.config());
152 bitmap->height(), desc.fConfig,
160 desc.fConfig = SkBitmapConfig2GrPixelConfig(bitmap->config());
189 desc.fConfig,
  /external/skia/include/core/
SkBitmap.h 94 Config config() const { return (Config)fConfig; }
377 /** Return the bitmap's colortable, if it uses one (i.e. fConfig is
672 uint8_t fConfig;
787 SkASSERT(fConfig == kARGB_8888_Config);
794 SkASSERT(fConfig == kRGB_565_Config || fConfig == kARGB_4444_Config);
801 SkASSERT(fConfig == kA8_Config || fConfig == kIndex8_Config);
808 SkASSERT(fConfig == kIndex8_Config);
  /external/skia/src/gpu/
GrRenderTarget.cpp 59 if (kUnknown_GrPixelConfig == fDesc.fConfig) {
62 colorBits = GrBytesPerPixel(fDesc.fConfig);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
GaneshUtils.cpp 45 desc.fConfig = config;
  /external/chromium_org/third_party/skia/include/gpu/
GrSurface.h 55 GrPixelConfig config() const { return fDesc.fConfig; }
  /external/chromium_org/third_party/skia/include/views/
SkOSWindow_Win.h 78 EGLConfig fConfig;
  /external/skia/include/gpu/
GrSurface.h 55 GrPixelConfig config() const { return fDesc.fConfig; }

Completed in 3589 milliseconds

1 2 3 4 5