HomeSort by relevance Sort by last modified time
    Searched defs:dstMask (Results 1 - 9 of 9) sorted by null

  /external/mesa3d/src/mesa/swrast/
s_masking.c 61 const GLuint dstMask = ~srcMask;
66 src[i] = (src[i] & srcMask) | (dst[i] & dstMask);
  /external/mesa3d/src/mesa/main/
atifragshader.h 38 GLuint dstMask;
90 _mesa_ColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMask,
95 _mesa_ColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMask,
101 _mesa_ColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask,
pack.c 176 GLubyte dstMask = 1 << (packing->SkipPixels & 0x7);
182 *d |= dstMask;
191 if (dstMask == 128) {
192 dstMask = 1;
197 dstMask = dstMask << 1;
203 GLubyte dstMask = 128 >> (packing->SkipPixels & 0x7);
209 *d |= dstMask;
218 if (dstMask == 1) {
219 dstMask = 128
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atifs_to_tgsi.c 383 GLuint dstMask = inst->DstReg[optype].dstMask;
384 if (dstMask == GL_NONE) {
387 dst[0] = ureg_writemask(dst[0], dstMask); /* the enum values match */
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 197 void copyFTBitmap(const FT_Bitmap& srcFTBitmap, SkMask& dstMask) {
198 SkASSERTF(dstMask.fBounds.width() == static_cast<int>(srcFTBitmap.width),
199 "dstMask.fBounds.width() = %d\n"
201 dstMask.fBounds.width(),
204 SkASSERTF(dstMask.fBounds.height() == static_cast<int>(srcFTBitmap.rows),
205 "dstMask.fBounds.height() = %d\n"
207 dstMask.fBounds.height(),
217 uint8_t* dst = dstMask.fImage;
218 const SkMask::Format dstFormat = static_cast<SkMask::Format>(dstMask.fFormat);
219 const size_t dstRowBytes = dstMask.fRowBytes
    [all...]
  /external/skqp/src/ports/
SkFontHost_FreeType_common.cpp 197 void copyFTBitmap(const FT_Bitmap& srcFTBitmap, SkMask& dstMask) {
198 SkASSERTF(dstMask.fBounds.width() == static_cast<int>(srcFTBitmap.width),
199 "dstMask.fBounds.width() = %d\n"
201 dstMask.fBounds.width(),
204 SkASSERTF(dstMask.fBounds.height() == static_cast<int>(srcFTBitmap.rows),
205 "dstMask.fBounds.height() = %d\n"
207 dstMask.fBounds.height(),
217 uint8_t* dst = dstMask.fImage;
218 const SkMask::Format dstFormat = static_cast<SkMask::Format>(dstMask.fFormat);
219 const size_t dstRowBytes = dstMask.fRowBytes
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryBindingTests.cpp 339 const VkAccessFlags dstMask = static_cast<VkAccessFlags>(fromRes ? VK_ACCESS_TRANSFER_READ_BIT : VK_ACCESS_HOST_READ_BIT);
345 dstMask, // VkAccessFlags dstAccessMask;
    [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 842 SkMask dstMask;
844 if (!as_MFB(paint->getMaskFilter())->filterMask(&dstMask, sourceMask, ctm, &margin)) {
847 SkIRect dstMaskBounds = dstMask.fBounds;
848 sk_sp<SkImage> mask = mask_to_greyscale_image(&dstMask);
    [all...]
  /external/skqp/src/pdf/
SkPDFDevice.cpp 842 SkMask dstMask;
844 if (!as_MFB(paint->getMaskFilter())->filterMask(&dstMask, sourceMask, ctm, &margin)) {
847 SkIRect dstMaskBounds = dstMask.fBounds;
848 sk_sp<SkImage> mask = mask_to_greyscale_image(&dstMask);
    [all...]

Completed in 291 milliseconds