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

1 2 3 4 5

  /external/skia/include/core/
SkPixmap.h 51 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
73 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
129 const SkImageInfo& info() const { return fInfo; }
154 int width() const { return fInfo.width(); }
160 int height() const { return fInfo.height(); }
170 SkColorType colorType() const { return fInfo.colorType(); }
178 SkAlphaType alphaType() const { return fInfo.alphaType(); }
186 SkColorSpace* colorSpace() const { return fInfo.colorSpace(); }
196 sk_sp<SkColorSpace> refColorSpace() const { return fInfo.refColorSpace(); }
204 bool isOpaque() const { return fInfo.isOpaque();
    [all...]
  /external/skia/bench/
AndroidCodecBench.cpp 35 fInfo = codec->getInfo().makeWH(scaledSize.width(), scaledSize.height())
37 if (kUnpremul_SkAlphaType == fInfo.alphaType()) {
38 fInfo = fInfo.makeAlphaType(kPremul_SkAlphaType);
41 fPixelStorage.reset(fInfo.computeMinByteSize());
53 codec->getAndroidPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(), &options);
CodecBench.cpp 42 fInfo = codec->getInfo().makeColorType(fColorType)
46 fPixelStorage.reset(fInfo.computeMinByteSize());
60 codec->getPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(),
  /external/skqp/bench/
AndroidCodecBench.cpp 35 fInfo = codec->getInfo().makeWH(scaledSize.width(), scaledSize.height())
37 if (kUnpremul_SkAlphaType == fInfo.alphaType()) {
38 fInfo = fInfo.makeAlphaType(kPremul_SkAlphaType);
41 fPixelStorage.reset(fInfo.computeMinByteSize());
53 codec->getAndroidPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(), &options);
CodecBench.cpp 42 fInfo = codec->getInfo().makeColorType(fColorType)
46 fPixelStorage.reset(fInfo.computeMinByteSize());
60 codec->getPixels(fInfo, fPixelStorage.get(), fInfo.minRowBytes(),
  /external/skqp/include/core/
SkPixmap.h 51 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
73 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
129 const SkImageInfo& info() const { return fInfo; }
154 int width() const { return fInfo.width(); }
160 int height() const { return fInfo.height(); }
170 SkColorType colorType() const { return fInfo.colorType(); }
178 SkAlphaType alphaType() const { return fInfo.alphaType(); }
186 SkColorSpace* colorSpace() const { return fInfo.colorSpace(); }
194 bool isOpaque() const { return fInfo.isOpaque(); }
214 int shiftPerPixel() const { return fInfo.shiftPerPixel();
    [all...]
  /external/skia/src/core/
SkWritePixelsRec.h 20 , fInfo(info)
28 , fInfo(pm.info())
35 SkImageInfo fInfo;
44 * is not valid (e.g. bad fInfo) for writePixels().
SkImageInfo.cpp 105 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
108 if (0 >= fInfo.width() || 0 >= fInfo.height()) {
114 SkIRect srcR = SkIRect::MakeXYWH(x, y, fInfo.width(), fInfo.height());
128 fPixels = ((char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
130 fInfo = fInfo.makeWH(srcR.width(), srcR.height());
142 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
145 if (0 >= fInfo.width() || 0 >= fInfo.height())
    [all...]
SkYUVPlanesCache.cpp 19 SkYUVPlanesCache::Info fInfo;
39 fValue.fInfo = *info;
67 result->fInfo = rec.fValue.fInfo;
81 *info = result.fInfo;
  /external/skia/src/image/
SkReadPixelsRec.h 20 , fInfo(info)
28 , fInfo(pm.info())
35 SkImageInfo fInfo;
44 * is not valid (e.g. bad fInfo) for readPixels().
SkImage_Lazy.h 29 SkImageInfo fInfo;
39 return fInfo;
43 return SkIRect::MakeXYWH(fOrigin.fX, fOrigin.fY, fInfo.width(), fInfo.height());
81 // Note that fInfo is not necessarily the info from the generator. It may be cropped by
83 const SkImageInfo fInfo;
  /external/skqp/src/core/
SkWritePixelsRec.h 20 , fInfo(info)
28 , fInfo(pm.info())
35 SkImageInfo fInfo;
44 * is not valid (e.g. bad fInfo) for writePixels().
SkImageInfo.cpp 103 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
106 if (0 >= fInfo.width() || 0 >= fInfo.height()) {
112 SkIRect srcR = SkIRect::MakeXYWH(x, y, fInfo.width(), fInfo.height());
126 fPixels = ((char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
128 fInfo = fInfo.makeWH(srcR.width(), srcR.height());
140 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
143 if (0 >= fInfo.width() || 0 >= fInfo.height())
    [all...]
SkYUVPlanesCache.cpp 19 SkYUVPlanesCache::Info fInfo;
39 fValue.fInfo = *info;
67 result->fInfo = rec.fValue.fInfo;
81 *info = result.fInfo;
  /external/skqp/src/image/
SkReadPixelsRec.h 20 , fInfo(info)
28 , fInfo(pm.info())
35 SkImageInfo fInfo;
44 * is not valid (e.g. bad fInfo) for readPixels().
SkImage_Lazy.h 29 SkImageInfo fInfo;
39 return fInfo;
43 return SkIRect::MakeXYWH(fOrigin.fX, fOrigin.fY, fInfo.width(), fInfo.height());
80 // Note that fInfo is not necessarily the info from the generator. It may be cropped by
82 const SkImageInfo fInfo;
  /external/skia/src/pdf/
SkPDFGradientShader.h 27 SkShader::GradientInfo fInfo;
53 SkASSERT(u.fInfo.fColors == u.fColors.get());
54 SkASSERT(u.fInfo.fColorOffsets == u.fStops.get());
55 SkASSERT(v.fInfo.fColors == v.fColors.get());
56 SkASSERT(v.fInfo.fColorOffsets == v.fStops.get());
58 && u.fInfo == v.fInfo
  /external/skqp/src/pdf/
SkPDFGradientShader.h 27 SkShader::GradientInfo fInfo;
53 SkASSERT(u.fInfo.fColors == u.fColors.get());
54 SkASSERT(u.fInfo.fColorOffsets == u.fStops.get());
55 SkASSERT(v.fInfo.fColors == v.fColors.get());
56 SkASSERT(v.fInfo.fColorOffsets == v.fStops.get());
58 && u.fInfo == v.fInfo
  /external/mesa3d/src/gallium/targets/haiku-softpipe/
SoftwareRenderer.cpp 49 fInfo(NULL),
115 if (fDirectModeEnabled && fInfo != NULL) {
116 fWidth = fInfo->window_bounds.right - fInfo->window_bounds.left;
117 fHeight = fInfo->window_bounds.bottom - fInfo->window_bounds.top;
157 if (!fDirectModeEnabled || fInfo == NULL) {
168 if (fInfo->window_bounds.bottom - fInfo->window_bounds.top
170 || fInfo->window_bounds.right - fInfo->window_bounds.lef
    [all...]
  /external/doclava/src/com/google/doclava/
FieldInfo.java 474 public boolean isConsistent(FieldInfo fInfo) {
476 if (!mType.equals(fInfo.mType)) {
477 Errors.error(Errors.CHANGED_TYPE, fInfo.position(), "Field " + fInfo.qualifiedName()
478 + " has changed type from " + mType + " to " + fInfo.mType);
480 } else if (!this.valueEquals(fInfo)) {
481 Errors.error(Errors.CHANGED_VALUE, fInfo.position(), "Field " + fInfo.qualifiedName()
482 + " has changed value from " + mConstantValue + " to " + fInfo.mConstantValue);
486 if (!scope().equals(fInfo.scope()))
    [all...]
  /external/skia/src/gpu/mock/
GrMockTexture.h 38 fInfo);
42 return GrBackendFormat::MakeMock(fInfo.fConfig);
53 , fInfo(info) {}
68 GrMockTextureInfo fInfo;
77 : GrSurface(gpu, desc), INHERITED(gpu, desc), fInfo(info) {
84 : GrSurface(gpu, desc), INHERITED(gpu, desc), fInfo(info) {
107 return {this->width(), this->height(), this->numColorSamples(), numStencilBits, fInfo};
111 return GrBackendFormat::MakeMock(fInfo.fConfig);
118 : GrSurface(gpu, desc), INHERITED(gpu, desc), fInfo(info) {}
121 GrMockRenderTargetInfo fInfo;
    [all...]
  /external/skqp/src/gpu/vk/
GrVkImage.h 29 : fInfo(info)
33 SkASSERT(fLayout->getImageLayout() == fInfo.fImageLayout);
48 return fInfo.fImage;
54 return fInfo.fAlloc;
56 VkFormat imageFormat() const { return fInfo.fFormat; }
60 uint32_t mipLevels() const { return fInfo.fLevelCount; }
65 return fInfo.fYcbcrConversionInfo;
75 return SkToBool(VK_IMAGE_TILING_LINEAR == fInfo.fImageTiling);
144 GrVkImageInfo fInfo;
GrVkImage.cpp 92 if (releaseFamilyQueue && fInfo.fCurrentQueueFamily == fInitialQueueFamily) {
109 VkImageAspectFlags aspectFlags = vk_format_to_aspect_flags(fInfo.fFormat);
113 if (fInfo.fCurrentQueueFamily != VK_QUEUE_FAMILY_IGNORED &&
114 gpu->queueIndex() != fInfo.fCurrentQueueFamily) {
118 SkASSERT(fInfo.fCurrentQueueFamily == fInitialQueueFamily);
120 srcQueueFamilyIndex = fInfo.fCurrentQueueFamily;
122 fInfo.fCurrentQueueFamily = gpu->queueIndex();
126 SkASSERT(fInfo.fCurrentQueueFamily == gpu->queueIndex());
127 srcQueueFamilyIndex = fInfo.fCurrentQueueFamily;
129 fInfo.fCurrentQueueFamily = fInitialQueueFamily
    [all...]
  /external/skia/src/gpu/vk/
GrVkImage.cpp 95 if (releaseFamilyQueue && fInfo.fCurrentQueueFamily == fInitialQueueFamily &&
114 VkImageAspectFlags aspectFlags = vk_format_to_aspect_flags(fInfo.fFormat);
118 if (fInfo.fCurrentQueueFamily != VK_QUEUE_FAMILY_IGNORED &&
119 gpu->queueIndex() != fInfo.fCurrentQueueFamily) {
123 SkASSERT(fInfo.fCurrentQueueFamily == fInitialQueueFamily);
125 srcQueueFamilyIndex = fInfo.fCurrentQueueFamily;
127 fInfo.fCurrentQueueFamily = gpu->queueIndex();
131 SkASSERT(fInfo.fCurrentQueueFamily == gpu->queueIndex());
132 srcQueueFamilyIndex = fInfo.fCurrentQueueFamily;
134 fInfo.fCurrentQueueFamily = fInitialQueueFamily
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/
testdata.cpp 16 fInfo(NULL),
28 if(fInfo != NULL) {
29 delete fInfo;
74 fInfo = new RBDataMap(info, status);
95 if(fInfo) {
96 info = fInfo;

Completed in 705 milliseconds

1 2 3 4 5