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

1 2 3 4 5 6

  /external/skia/include/core/
SkSize.h 15 T fHeight;
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 = 0
    [all...]
SkImage.h 61 int fHeight;
72 int height() const { return fHeight; }
83 fHeight(height),
92 const int fHeight;
SkSurface.h 68 int height() const { return fHeight; }
136 const int fHeight;
SkBitmap.h 94 bool empty() const { return 0 == fWidth || 0 == fHeight; }
112 int height() const { return fHeight; }
144 size_t getSize() const { return fHeight * fRowBytes; }
158 size.setMul(fHeight, fRowBytes);
624 SkASSERT((unsigned)y < (unsigned)fHeight);
630 SkASSERT((unsigned)y < (unsigned)fHeight);
636 int fHeight;
661 uint32_t fHeight;
766 SkASSERT((unsigned)x < fWidth && (unsigned)y < fHeight);
773 SkASSERT((unsigned)x < fWidth && (unsigned)y < fHeight);
    [all...]
  /external/skia/legacy/include/core/
SkSize.h 15 T fHeight;
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 = 0
    [all...]
SkPicture.h 96 int height() const { return fHeight; }
107 int fWidth, fHeight;
  /external/skia/src/gpu/
GrRectanizer.h 25 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
33 int height() const { return fHeight; }
51 int fHeight;
GrStencilBuffer.h 29 int height() const { return fHeight; }
61 , fHeight(height)
71 int fHeight;
  /external/skia/src/gpu/gl/
GrGLIRect.h 24 GrGLsizei fHeight;
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
49 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height);
50 fHeight = height;
55 GrAssert(fHeight >= 0);
62 fBottom + fHeight >= glRect.fBottom + glRect.fHeight;
65 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}
  /external/skia/include/images/
SkBitmapRegionDecoder.h 24 fHeight = height;
35 virtual int getHeight() { return fHeight; }
43 int fHeight;
SkPageFlipper.h 30 int height() const { return fHeight; }
59 int fHeight;
SkMovie.h 58 int fHeight;
  /external/skia/legacy/include/images/
SkBitmapRegionDecoder.h 24 fHeight = height;
35 virtual int getHeight() { return fHeight; }
43 int fHeight;
SkPageFlipper.h 30 int height() const { return fHeight; }
59 int fHeight;
SkMovie.h 56 int fHeight;
  /external/skia/legacy/src/images/
SkPageFlipper.cpp 14 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);
SkImageDecoder_wbmp.cpp 50 int fHeight;
65 if (!read_mbf(stream, &fHeight) || (unsigned)fHeight > 0xFFFF) {
68 return fWidth != 0 && fHeight != 0;
111 int height = head.fHeight;
  /external/skia/src/images/
SkPageFlipper.cpp 14 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);
SkImageDecoder_wbmp.cpp 50 int fHeight;
65 if (!read_mbf(stream, &fHeight) || (unsigned)fHeight > 0xFFFF) {
68 return fWidth != 0 && fHeight != 0;
109 int height = head.fHeight;
  /external/skia/src/image/
SkImage_Raster.cpp 21 if (info.fWidth < 0 || info.fHeight < 0) {
24 if (info.fWidth > maxDimension || info.fHeight > maxDimension) {
45 int64_t size = (int64_t)info.fHeight * rowBytes;
85 : INHERITED(info.fWidth, info.fHeight) {
89 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes);
96 : INHERITED(info.fWidth, info.fHeight) {
100 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes);
118 if (0 == info.fWidth && 0 == info.fHeight) {
127 SkAutoDataUnref data(SkData::NewWithCopy(pixels, info.fHeight * rowBytes));
136 if (0 == info.fWidth && 0 == info.fHeight) {
    [all...]
SkSurface_Raster.cpp 76 uint64_t size = (uint64_t)info.fHeight * rowBytes;
85 : INHERITED(info.fWidth, info.fHeight) {
89 fBitmap.setConfig(config, info.fWidth, info.fHeight, rb);
96 : INHERITED(info.fWidth, info.fHeight) {
100 fBitmap.setConfig(config, info.fWidth, info.fHeight, rb);
160 uint64_t size64 = (uint64_t)info.fHeight * rowBytes;
  /external/skia/src/core/
SkPicture.cpp 110 fWidth = fHeight = 0;
115 fHeight = src.fHeight;
141 SkTSwap(fHeight, other.fHeight);
157 clone->fHeight = fHeight;
201 fHeight = height;
223 SkIntToScalar(fHeight));
262 fWidth = fHeight = 0
    [all...]
  /external/skia/legacy/src/core/
SkPicture.cpp 105 fWidth = fHeight = 0;
110 fHeight = src.fHeight;
136 SkTSwap(fHeight, other.fHeight);
156 fHeight = height;
202 fHeight = stream->readU32();
221 stream->write32(fHeight);
  /external/skia/tests/
ReadWriteAlphaTest.cpp 36 desc.fHeight = Y_SIZE;
54 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
63 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
91 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
TestSize.cpp 30 a.fWidth == b.fWidth && a.fHeight == b.fHeight);
58 a.fWidth == b.fWidth && a.fHeight == b.fHeight);

Completed in 169 milliseconds

1 2 3 4 5 6