Searched refs:fFormat (Results 1 - 25 of 64) sorted by relevance

123

/external/skia/src/gpu/gl/
H A DGrGLStencilAttachment.h37 , fFormat(format)
46 const Format& format() const { return fFormat; }
58 Format fFormat; member in class:GrGLStencilAttachment
H A DGrGLStencilAttachment.cpp16 size *= fFormat.fTotalBits;
/external/skia/include/core/
H A DSkMask.h37 Format fFormat; member in struct:SkMask
60 SkASSERT(kBW_Format == fFormat);
71 SkASSERT(kA8_Format == fFormat);
83 SkASSERT(kLCD16_Format == fFormat);
96 SkASSERT(kARGB32_Format == fFormat);
/external/skia/src/gpu/vk/
H A DGrVkRenderPass.h55 VkFormat fFormat; member in struct:GrVkRenderPass::AttachmentsDescriptor::AttachmentDesc
60 : fFormat(VK_FORMAT_UNDEFINED)
64 return (fFormat == right.fFormat &&
72 return (fFormat == desc.fFormat && fSamples == desc.fSamples);
H A DGrVkStencilAttachment.h35 VkFormat vkFormat() const { return fFormat.fInternalFormat; }
52 Format fFormat; member in class:GrVkStencilAttachment
H A DGrVkImage.cpp48 VkImageAspectFlags aspectFlags = vk_format_to_aspect_flags(fInfo.fFormat);
88 VkImageCreateFlags createFlags = GrVkFormatIsSRGB(imageDesc.fFormat, nullptr)
96 imageDesc.fFormat, // VkFormat
121 info->fFormat = imageDesc.fFormat;
H A DGrVkImage.h45 VkFormat imageFormat() const { return fInfo.fFormat; }
62 VkFormat fFormat; member in struct:GrVkImage::ImageDesc
73 , fFormat(VK_FORMAT_UNDEFINED)
H A DGrVkStencilAttachment.cpp23 , fFormat(format)
36 imageDesc.fFormat = format.fInternalFormat;
74 size *= fFormat.fTotalBits;
H A DGrVkTexture.cpp73 const GrVkImageView* imageView = GrVkImageView::Create(gpu, info.fImage, info.fFormat,
92 const GrVkImageView* imageView = GrVkImageView::Create(gpu, info->fImage, info->fFormat,
163 if (allowSRGB || !GrVkFormatIsSRGB(fInfo.fFormat, &linearFormat)) {
200 imageDesc.fFormat = fInfo.fFormat;
217 const GrVkImageView* textureView = GrVkImageView::Create(gpu, image, info.fFormat,
H A DGrVkRenderPass.cpp22 attachment->format = desc.fFormat;
243 b->add32(fAttachmentsDescriptor.fColor.fFormat);
247 b->add32(fAttachmentsDescriptor.fStencil.fFormat);
/external/skia/src/core/
H A DSkMask.cpp31 if (fFormat == SkMask::k3D_Format) {
80 SkASSERT(kBW_Format != fFormat);
86 addr += (x - fBounds.fLeft) << maskFormatToShift(fFormat);
H A DSkRasterizer.cpp24 srcM.fFormat = SkMask::kA8_Format;
H A DSkRasterPipelineBlitter.cpp273 if (mask.fFormat == SkMask::kBW_Format) {
278 if (mask.fFormat == SkMask::kA8_Format && fBlitMaskA8.empty()) {
294 if (mask.fFormat == SkMask::kLCD16_Format && fBlitMaskLCD16.empty()) {
309 switch (mask.fFormat) {
/external/icu/icu4c/source/test/intltest/
H A Dtsnmfmt.cpp49 fFormat = NumberFormat::createInstance(fStatus);
85 fFormat = NumberFormat::createInstance(locale, fStatus);
91 fFormat = NumberFormat::createCurrencyInstance(locale, fStatus);
97 fFormat = NumberFormat::createPercentInstance(locale, fStatus);
104 fFormat = NumberFormat::createScientificInstance(locale, fStatus);
165 if (fFormat != 0)
167 delete fFormat;
168 fFormat = 0;
172 if (fFormat == 0)
181 DecimalFormat *s = (DecimalFormat*)fFormat;
[all...]
H A Dtsdate.cpp37 fFormat = DateFormat::createInstance();
83 fFormat = DateFormat::createTimeInstance(timeStyle, locale);
94 fFormat = DateFormat::createDateInstance(dateStyle, locale);
107 fFormat = DateFormat::createDateTimeInstance(dateStyle, timeStyle, locale);
115 if (fFormat == 0)
137 delete fFormat;
144 SimpleDateFormat *s = (SimpleDateFormat*)fFormat;
164 fFormat->format(theDate, string[0]);
169 date[i] = fFormat->parse(string[i-1], status);
177 fFormat
[all...]
H A Dtsdate.h42 * perform tests using date and fFormat, called in many variations
58 DateFormat *fFormat; member in class:IntlTestDateFormat
H A Dtsnmfmt.h36 * perform tests using aNumber and fFormat, called in many variations
40 * perform tests using aNumber and fFormat, called in many variations
56 NumberFormat* fFormat; member in class:IntlTestNumberFormat
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DIntlTestDateFormat.java48 private DateFormat fFormat = null; field in class:IntlTestDateFormat
59 fFormat = DateFormat.getInstance();
79 fFormat = DateFormat.getTimeInstance(timeStyle, locale);
93 fFormat = DateFormat.getDateInstance(dateStyle, locale);
106 fFormat = DateFormat.getDateTimeInstance(dateStyle, timeStyle, locale);
119 if (fFormat == null) {
139 if (fFormat == null) {
145 SimpleDateFormat s = (SimpleDateFormat) fFormat;
163 date[i] = fFormat.parse(string[i-1].toString());
167 errln("********** FAIL: Parse of " + string[i-1] + " failed for locale: "+fFormat
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDateFormat.java47 private DateFormat fFormat = null; field in class:IntlTestDateFormat
58 fFormat = DateFormat.getInstance();
78 fFormat = DateFormat.getTimeInstance(timeStyle, locale);
92 fFormat = DateFormat.getDateInstance(dateStyle, locale);
105 fFormat = DateFormat.getDateTimeInstance(dateStyle, timeStyle, locale);
118 if (fFormat == null) {
138 if (fFormat == null) {
144 SimpleDateFormat s = (SimpleDateFormat) fFormat;
162 date[i] = fFormat.parse(string[i-1].toString());
166 errln("********** FAIL: Parse of " + string[i-1] + " failed for locale: "+fFormat
[all...]
/external/skia/src/sksl/ir/
H A DSkSLLayout.h105 , fFormat(format)
122 , fFormat(Format::kUnspecified)
171 if (Format::kUnspecified != fFormat) {
172 result += separator + FormatToStr(fFormat);
236 fFormat == other.fFormat &&
260 Format fFormat; member in struct:SkSL::Layout
/external/skia/include/gpu/vk/
H A DGrVkTypes.h54 VkFormat fFormat; member in struct:GrVkImageInfo
/external/skia/src/gpu/
H A DGrProcessor.cpp299 fFormat = GrImageStorageFormat::kRGBA8;
302 fFormat = GrImageStorageFormat::kRGBA8i;
305 fFormat = GrImageStorageFormat::kRGBA16f;
308 fFormat = GrImageStorageFormat::kRGBA32f;
/external/skia/src/effects/
H A DSkTableMaskFilter.cpp29 if (src.fFormat != SkMask::kA8_Format) {
35 dst->fFormat = SkMask::kA8_Format;
/external/skia/tests/
H A DMaskCacheTest.cpp50 mask.fFormat = SkMask::kBW_Format;
88 mask.fFormat = SkMask::kBW_Format;
H A DBlitMaskClip.cpp50 mask.fFormat = SkMask::kBW_Format;

Completed in 443 milliseconds

123