Lines Matching defs:src

122 extern "C" void scanline_t32cb16_arm(uint16_t *dst, uint32_t *src, size_t ct);
195 "565 fb, 8888 tx, blend dst:ONE_MINUS_SRCA src:SRCA", scanline_t32cb16blend_srca, init_y_noop },
333 // src and dest have the same format anyway, there is no dithering
448 const pixel_t* src, const pixel_t* dst);
481 blend_factor(c, &sf, c->state.blend.src, fragment, fb);
526 uint32_t factor, const pixel_t* src, const pixel_t* dst)
548 r->c[1] = blendfactor(src->c[1], src->s[1]);
549 r->c[2] = blendfactor(src->c[2], src->s[2]);
550 r->c[3] = blendfactor(src->c[3], src->s[3]);
551 r->c[0] = blendfactor(src->c[0], src->s[0]);
560 r->c[1] = FIXED_ONE - blendfactor(src->c[1], src->s[1]);
561 r->c[2] = FIXED_ONE - blendfactor(src->c[2], src->s[2]);
562 r->c[3] = FIXED_ONE - blendfactor(src->c[3], src->s[3]);
563 r->c[0] = FIXED_ONE - blendfactor(src->c[0], src->s[0]);
569 r->c[0] = blendfactor(src->c[0], src->s[0], FIXED_ONE);
575 r->c[0] = FIXED_ONE - blendfactor(src->c[0], src->s[0], FIXED_ONE);
998 uint16_t* src = reinterpret_cast<uint16_t*>(m_data) + (u + (m_stride*v));
999 return src[0];
1004 uint32_t* src = reinterpret_cast<uint32_t*>(m_data) + (u + (m_stride*v));
1005 return src[0];
1050 const uint16_t* src = reinterpret_cast<const uint16_t*>(m_data);
1051 return src[u];
1060 const uint32_t* src = reinterpret_cast<const uint32_t*>(m_data);
1061 return src[u];
1149 * blender.blend(<32-bit-src-pixel-value>,<ptr-to-16-bit-dest-pixel>)
2124 uint32_t *src = reinterpret_cast<uint32_t*>(tex->data)+(u+(tex->stride*v));
2130 s = GGL_RGBA_TO_HOST( *src++ );
2137 s = GGL_RGBA_TO_HOST( *src++ );
2140 s = GGL_RGBA_TO_HOST( *src++ );
2143 s = GGL_RGBA_TO_HOST( *src++ );
2146 s = GGL_RGBA_TO_HOST( *src++ );
2170 uint32_t *src = reinterpret_cast<uint32_t*>(tex->data)+(u+(tex->stride*v));
2173 scanline_t32cb16blend_arm(dst, src, ct);
2175 scanline_t32cb16blend_mips(dst, src, ct);
2238 uint8_t *src = reinterpret_cast<uint8_t*>(tex->data) +
2242 memcpy(dst, src, size);
2329 uint8_t *src = reinterpret_cast<uint8_t*>(tex->data) +
2333 memcpy(dst, src, ct * fp->size * yc);
2339 memcpy(dst, src, size);
2341 src += sbpr;