Searched refs:fWidth (Results 51 - 75 of 416) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkMipMap.h23 uint32_t fWidth, fHeight; member in struct:SkMipMap::Level
H A DSkPicture.cpp130 fWidth = fHeight = 0;
136 : fWidth(width)
150 fWidth = src.fWidth;
170 SkTSwap(fWidth, other.fWidth);
187 clone->fWidth = fWidth;
339 , fWidth(width)
359 return SkNEW_ARGS(SkPicture, (playback, info.fWidth, inf
[all...]
/external/skia/src/gpu/
H A DGrSurface.cpp20 info.fWidth = this->width();
H A DSkGrPixelRef.cpp70 desc.fWidth = subset->width();
75 desc.fWidth = texture->width();
99 SkImageInfo info = SkImageInfo::Make(desc.fWidth, desc.fHeight, dstCT, kPremul_SkAlphaType);
125 SkASSERT(info.fWidth <= fSurface->width());
175 width = this->info().fWidth;
/external/skia/src/gpu/gl/
H A DGrGLProgram.h102 fRenderTargetSize.fWidth = -1;
120 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
124 combined.setAll(SkIntToScalar(2) / fRenderTargetSize.fWidth, 0, -SK_Scalar1,
140 destVec[0] = 2.f / fRenderTargetSize.fWidth;
H A DGrGLRenderTarget.cpp33 temp.fWidth = width;
52 viewport.fWidth, viewport.fHeight,
62 SkASSERT(viewport.fWidth == texture->width());
75 viewport.fWidth, viewport.fHeight,
H A DGrGLTexture.cpp30 vp.fWidth = textureDesc.fWidth;
/external/skia/tests/
H A DReadWriteAlphaTest.cpp39 desc.fWidth = X_SIZE;
58 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
67 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
95 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
/external/skia/tools/
H A DLazyDecodeBitmap.cpp42 if ((!FLAGS_useVolatileCache) || (info.fWidth * info.fHeight < 32 * 1024)) {
/external/chromium_org/third_party/skia/src/core/
H A DSkImageInfo.cpp21 fWidth = buffer.read32();
33 buffer.write32(fWidth);
H A DSkStroke.h49 SkScalar fWidth, fMiterLimit; member in class:SkStroke
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLTexture.cpp30 vp.fWidth = textureDesc.fWidth;
/external/chromium_org/third_party/skia/tests/
H A DRecordingXfermodeTest.cpp112 fWidth = imageInfo.width();
122 SkRect canvasRect(SkRect::MakeWH(SkIntToScalar(fWidth),SkIntToScalar(fHeight)));
123 SkCanvas* canvas = recorder.DEPRECATED_beginRecording( SkIntToScalar(fWidth), SkIntToScalar(fHeight), &factory);
137 int fWidth; member in class:__anon15412::DeprecatedRecorderStrategy
151 fWidth = imageInfo.width();
161 SkRect canvasRect(SkRect::MakeWH(SkIntToScalar(fWidth),SkIntToScalar(fHeight)));
162 SkCanvas* canvas = recorder.EXPERIMENTAL_beginRecording( SkIntToScalar(fWidth), SkIntToScalar(fHeight), &factory);
176 int fWidth; member in class:__anon15412::NewRecordingStrategy
/external/skia/include/core/
H A DSkSurface.h100 int width() const { return fWidth; }
197 const int fWidth; member in class:SkSurface
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_wbmp.cpp52 int fWidth; member in struct:wbmp_head
65 if (!read_mbf(stream, &fWidth) || (unsigned)fWidth > 0xFFFF) {
71 return fWidth != 0 && fHeight != 0;
111 int width = head.fWidth;
H A DSkImageDecoder_libbmp.cpp74 fWidth = width;
84 int width() const { return fWidth; }
90 int fWidth; member in class:SkBmpDecoderCallback
/external/skia/src/images/
H A DSkImageDecoder_wbmp.cpp52 int fWidth; member in struct:wbmp_head
65 if (!read_mbf(stream, &fWidth) || (unsigned)fWidth > 0xFFFF) {
71 return fWidth != 0 && fHeight != 0;
111 int width = head.fWidth;
H A DSkImageDecoder_libbmp.cpp74 fWidth = width;
84 int width() const { return fWidth; }
90 int fWidth; member in class:SkBmpDecoderCallback
/external/chromium_org/third_party/skia/samplecode/
H A DSampleOvalTest.cpp93 if (fSize.fWidth < kLimit) {
94 SkDebugf("--- width=%g, flat=%d buldge=%d total: flat=%d buldge=%d\n", fSize.fWidth,
96 fSize.fWidth += SK_Scalar1;
/external/skia/samplecode/
H A DSampleOvalTest.cpp93 if (fSize.fWidth < kLimit) {
94 SkDebugf("--- width=%g, flat=%d buldge=%d total: flat=%d buldge=%d\n", fSize.fWidth,
96 fSize.fWidth += SK_Scalar1;
/external/chromium_org/third_party/icu/source/io/
H A Duprintf.c77 if(info->fWidth != -1 && resultLen < info->fWidth) {
81 for(i = 0; i < info->fWidth - resultLen; ++i) {
88 for(i = 0; i < info->fWidth - resultLen; ++i) {
/external/chromium_org/third_party/skia/bench/
H A DGMBench.cpp50 return SkIPoint::Make(size.fWidth, size.fHeight);
/external/chromium_org/third_party/skia/experimental/iOSSampleApp/
H A DSkSampleUIView.h24 GLint fWidth; member in struct:__anon15027
/external/chromium_org/third_party/skia/include/images/
H A DSkMovie.h57 int fWidth; member in struct:SkMovie::Info
/external/icu/icu4c/source/io/
H A Duprintf.c77 if(info->fWidth != -1 && resultLen < info->fWidth) {
81 for(i = 0; i < info->fWidth - resultLen; ++i) {
88 for(i = 0; i < info->fWidth - resultLen; ++i) {

Completed in 6022 milliseconds

1234567891011>>