Searched refs:fHeight (Results 1 - 25 of 239) sorted by relevance

12345678910

/external/chromium_org/third_party/skia/include/core/
H A DSkSize.h15 T fHeight; member in struct:SkTSize
20 s.fHeight = h;
26 fHeight = h;
29 /** Returns true iff fWidth == 0 && fHeight == 0
32 return 0 == fWidth && 0 == fHeight;
37 return fWidth <= 0 || fHeight <= 0;
42 fWidth = fHeight = 0;
46 T height() const { return fHeight; }
53 if (fHeight < 0) {
54 fHeight
[all...]
H A DSkImageInfo.h108 int fHeight; member in struct:SkImageInfo
135 if (0 == fHeight) {
138 return (fHeight - 1) * rowBytes + fWidth * this->bytesPerPixel();
/external/skia/include/core/
H A DSkSize.h15 T fHeight; member in struct:SkTSize
20 s.fHeight = h;
26 fHeight = h;
29 /** Returns true iff fWidth == 0 && fHeight == 0
32 return 0 == fWidth && 0 == fHeight;
37 return fWidth <= 0 || fHeight <= 0;
42 fWidth = fHeight = 0;
46 T height() const { return fHeight; }
53 if (fHeight < 0) {
54 fHeight
[all...]
H A DSkImageInfo.h108 int fHeight; member in struct:SkImageInfo
135 if (0 == fHeight) {
138 return (fHeight - 1) * rowBytes + fWidth * this->bytesPerPixel();
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLIRect.h24 GrGLsizei fHeight; member in struct:GrGLIRect
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
51 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height);
55 fHeight = height;
60 SkASSERT(fHeight >= 0);
67 fBottom + fHeight >= glRect.fBottom + glRect.fHeight;
70 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}
/external/skia/src/gpu/gl/
H A DGrGLIRect.h24 GrGLsizei fHeight; member in struct:GrGLIRect
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
51 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height);
55 fHeight = height;
60 SkASSERT(fHeight >= 0);
67 fBottom + fHeight >= glRect.fBottom + glRect.fHeight;
70 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer.h22 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
32 int height() const { return fHeight; }
50 int fHeight; member in class:GrRectanizer
H A DGrStencilBuffer.h29 int height() const { return fHeight; }
60 , fHeight(height)
70 int fHeight; member in class:GrStencilBuffer
/external/skia/src/gpu/
H A DGrRectanizer.h22 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
32 int height() const { return fHeight; }
50 int fHeight; member in class:GrRectanizer
H A DGrStencilBuffer.h29 int height() const { return fHeight; }
60 , fHeight(height)
70 int fHeight; member in class:GrStencilBuffer
/external/chromium_org/third_party/skia/src/images/
H A DSkPageFlipper.cpp14 fHeight = 0;
24 fHeight = height;
34 fHeight = height;
42 fDirty1->setRect(0, 0, fWidth, fHeight);
47 r.set(0, 0, fWidth, fHeight);
55 r.setRect(0, 0, fWidth, fHeight);
H A DSkImageDecoder_wbmp.cpp53 int fHeight; member in struct:wbmp_head
68 if (!read_mbf(stream, &fHeight) || (unsigned)fHeight > 0xFFFF) {
71 return fWidth != 0 && fHeight != 0;
112 int height = head.fHeight;
/external/skia/src/images/
H A DSkPageFlipper.cpp14 fHeight = 0;
24 fHeight = height;
34 fHeight = height;
42 fDirty1->setRect(0, 0, fWidth, fHeight);
47 r.set(0, 0, fWidth, fHeight);
55 r.setRect(0, 0, fWidth, fHeight);
H A DSkImageDecoder_wbmp.cpp53 int fHeight; member in struct:wbmp_head
68 if (!read_mbf(stream, &fHeight) || (unsigned)fHeight > 0xFFFF) {
71 return fWidth != 0 && fHeight != 0;
112 int height = head.fHeight;
/external/chromium_org/third_party/skia/include/images/
H A DSkPageFlipper.h30 int height() const { return fHeight; }
59 int fHeight; member in class:SkPageFlipper
/external/skia/include/images/
H A DSkPageFlipper.h30 int height() const { return fHeight; }
59 int fHeight; member in class:SkPageFlipper
/external/chromium_org/third_party/skia/src/image/
H A DSkImage_Raster.cpp21 if (info.fWidth < 0 || info.fHeight < 0) {
24 if (info.fWidth > maxDimension || info.fHeight > maxDimension) {
44 int64_t size = (int64_t)info.fHeight * rowBytes;
86 : INHERITED(info.fWidth, info.fHeight) {
93 : INHERITED(info.fWidth, info.fHeight) {
96 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes, info.fAlphaType);
121 if (0 == info.fWidth && 0 == info.fHeight) {
130 SkAutoDataUnref data(SkData::NewWithCopy(pixels, info.fHeight * rowBytes));
139 if (0 == info.fWidth && 0 == info.fHeight) {
148 size_t size = info.fHeight * rowByte
[all...]
/external/skia/src/image/
H A DSkImage_Raster.cpp21 if (info.fWidth < 0 || info.fHeight < 0) {
24 if (info.fWidth > maxDimension || info.fHeight > maxDimension) {
44 int64_t size = (int64_t)info.fHeight * rowBytes;
86 : INHERITED(info.fWidth, info.fHeight) {
93 : INHERITED(info.fWidth, info.fHeight) {
96 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes, info.fAlphaType);
121 if (0 == info.fWidth && 0 == info.fHeight) {
130 SkAutoDataUnref data(SkData::NewWithCopy(pixels, info.fHeight * rowBytes));
139 if (0 == info.fWidth && 0 == info.fHeight) {
148 size_t size = info.fHeight * rowByte
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPicture.cpp119 fWidth = fHeight = 0;
124 fHeight = src.fHeight;
150 SkTSwap(fHeight, other.fHeight);
166 clone->fHeight = fHeight;
210 fHeight = height;
232 SkIntToScalar(fHeight));
305 , fHeight(heigh
[all...]
H A DSkImageInfo.cpp21 fHeight = buffer.read32();
33 buffer.write32(fHeight);
/external/skia/src/core/
H A DSkPicture.cpp119 fWidth = fHeight = 0;
124 fHeight = src.fHeight;
150 SkTSwap(fHeight, other.fHeight);
166 clone->fHeight = fHeight;
210 fHeight = height;
232 SkIntToScalar(fHeight));
305 , fHeight(heigh
[all...]
H A DSkImageInfo.cpp21 fHeight = buffer.read32();
33 buffer.write32(fHeight);
/external/skia/tests/
H A DTestSize.cpp31 a.fWidth == b.fWidth && a.fHeight == b.fHeight);
59 a.fWidth == b.fWidth && a.fHeight == b.fHeight);
H A DMipMapTest.cpp46 REPORTER_ASSERT(reporter, level.fHeight > 0);
51 REPORTER_ASSERT(reporter, level.fHeight <= prevLevel.fHeight);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
H A DGaneshUtils.cpp50 desc.fHeight = size.height();
57 info.fHeight = desc.fHeight;

Completed in 485 milliseconds

12345678910