Lines Matching full:append

25 void SkRasterPipeline::append(StockStage stage, void* ctx) {  in append()  function in SkRasterPipeline
43 void SkRasterPipeline::append(StockStage stage, uintptr_t ctx) { in append() function in SkRasterPipeline
46 this->append(stage, ptrCtx); in append()
111 this->append(black_color); in append_constant_color()
113 this->append(white_color); in append_constant_color()
147 this->append(SkRasterPipeline::matrix_translate, trans); in append_matrix()
155 this->append(SkRasterPipeline::matrix_scale_translate, scaleTrans); in append_matrix()
160 this->append(SkRasterPipeline::matrix_2x3, storage); in append_matrix()
163 this->append(SkRasterPipeline::matrix_perspective, storage); in append_matrix()
172 case kAlpha_8_SkColorType: this->append(load_a8, ctx); break; in append_load()
173 case kA16_unorm_SkColorType: this->append(load_a16, ctx); break; in append_load()
174 case kA16_float_SkColorType: this->append(load_af16, ctx); break; in append_load()
175 case kRGB_565_SkColorType: this->append(load_565, ctx); break; in append_load()
176 case kARGB_4444_SkColorType: this->append(load_4444, ctx); break; in append_load()
177 case kR8G8_unorm_SkColorType: this->append(load_rg88, ctx); break; in append_load()
178 case kR16G16_unorm_SkColorType: this->append(load_rg1616, ctx); break; in append_load()
179 case kR16G16_float_SkColorType: this->append(load_rgf16, ctx); break; in append_load()
180 case kRGBA_8888_SkColorType: this->append(load_8888, ctx); break; in append_load()
181 case kRGBA_1010102_SkColorType: this->append(load_1010102, ctx); break; in append_load()
182 case kR16G16B16A16_unorm_SkColorType:this->append(load_16161616,ctx); break; in append_load()
184 case kRGBA_F16_SkColorType: this->append(load_f16, ctx); break; in append_load()
185 case kRGBA_F32_SkColorType: this->append(load_f32, ctx); break; in append_load()
187 case kGray_8_SkColorType: this->append(load_a8, ctx); in append_load()
188 this->append(alpha_to_gray); in append_load()
191 case kRGB_888x_SkColorType: this->append(load_8888, ctx); in append_load()
192 this->append(force_opaque); in append_load()
195 case kBGRA_1010102_SkColorType: this->append(load_1010102, ctx); in append_load()
196 this->append(swap_rb); in append_load()
199 case kRGB_101010x_SkColorType: this->append(load_1010102, ctx); in append_load()
200 this->append(force_opaque); in append_load()
203 case kBGR_101010x_SkColorType: this->append(load_1010102, ctx); in append_load()
204 this->append(force_opaque); in append_load()
205 this->append(swap_rb); in append_load()
208 case kBGRA_8888_SkColorType: this->append(load_8888, ctx); in append_load()
209 this->append(swap_rb); in append_load()
218 case kAlpha_8_SkColorType: this->append(load_a8_dst, ctx); break; in append_load_dst()
219 case kA16_unorm_SkColorType: this->append(load_a16_dst, ctx); break; in append_load_dst()
220 case kA16_float_SkColorType: this->append(load_af16_dst, ctx); break; in append_load_dst()
221 case kRGB_565_SkColorType: this->append(load_565_dst, ctx); break; in append_load_dst()
222 case kARGB_4444_SkColorType: this->append(load_4444_dst, ctx); break; in append_load_dst()
223 case kR8G8_unorm_SkColorType: this->append(load_rg88_dst, ctx); break; in append_load_dst()
224 case kR16G16_unorm_SkColorType: this->append(load_rg1616_dst, ctx); break; in append_load_dst()
225 case kR16G16_float_SkColorType: this->append(load_rgf16_dst, ctx); break; in append_load_dst()
226 case kRGBA_8888_SkColorType: this->append(load_8888_dst, ctx); break; in append_load_dst()
227 case kRGBA_1010102_SkColorType: this->append(load_1010102_dst, ctx); break; in append_load_dst()
228 case kR16G16B16A16_unorm_SkColorType: this->append(load_16161616_dst,ctx); break; in append_load_dst()
230 case kRGBA_F16_SkColorType: this->append(load_f16_dst, ctx); break; in append_load_dst()
231 case kRGBA_F32_SkColorType: this->append(load_f32_dst, ctx); break; in append_load_dst()
233 case kGray_8_SkColorType: this->append(load_a8_dst, ctx); in append_load_dst()
234 this->append(alpha_to_gray_dst); in append_load_dst()
237 case kRGB_888x_SkColorType: this->append(load_8888_dst, ctx); in append_load_dst()
238 this->append(force_opaque_dst); in append_load_dst()
241 case kBGRA_1010102_SkColorType: this->append(load_1010102_dst, ctx); in append_load_dst()
242 this->append(swap_rb_dst); in append_load_dst()
245 case kRGB_101010x_SkColorType: this->append(load_1010102_dst, ctx); in append_load_dst()
246 this->append(force_opaque_dst); in append_load_dst()
249 case kBGR_101010x_SkColorType: this->append(load_1010102_dst, ctx); in append_load_dst()
250 this->append(force_opaque_dst); in append_load_dst()
251 this->append(swap_rb_dst); in append_load_dst()
254 case kBGRA_8888_SkColorType: this->append(load_8888_dst, ctx); in append_load_dst()
255 this->append(swap_rb_dst); in append_load_dst()
264 case kAlpha_8_SkColorType: this->append(store_a8, ctx); break; in append_store()
265 case kA16_unorm_SkColorType: this->append(store_a16, ctx); break; in append_store()
266 case kA16_float_SkColorType: this->append(store_af16, ctx); break; in append_store()
267 case kRGB_565_SkColorType: this->append(store_565, ctx); break; in append_store()
268 case kARGB_4444_SkColorType: this->append(store_4444, ctx); break; in append_store()
269 case kR8G8_unorm_SkColorType: this->append(store_rg88, ctx); break; in append_store()
270 case kR16G16_unorm_SkColorType: this->append(store_rg1616, ctx); break; in append_store()
271 case kR16G16_float_SkColorType: this->append(store_rgf16, ctx); break; in append_store()
272 case kRGBA_8888_SkColorType: this->append(store_8888, ctx); break; in append_store()
273 case kRGBA_1010102_SkColorType: this->append(store_1010102, ctx); break; in append_store()
274 case kR16G16B16A16_unorm_SkColorType: this->append(store_16161616,ctx); break; in append_store()
276 case kRGBA_F16_SkColorType: this->append(store_f16, ctx); break; in append_store()
277 case kRGBA_F32_SkColorType: this->append(store_f32, ctx); break; in append_store()
279 case kRGB_888x_SkColorType: this->append(force_opaque); in append_store()
280 this->append(store_8888, ctx); in append_store()
283 case kBGRA_1010102_SkColorType: this->append(swap_rb); in append_store()
284 this->append(store_1010102, ctx); in append_store()
287 case kRGB_101010x_SkColorType: this->append(force_opaque); in append_store()
288 this->append(store_1010102, ctx); in append_store()
291 case kBGR_101010x_SkColorType: this->append(force_opaque); in append_store()
292 this->append(swap_rb); in append_store()
293 this->append(store_1010102, ctx); in append_store()
296 case kGray_8_SkColorType: this->append(bt709_luminance_or_luma_to_alpha); in append_store()
297 this->append(store_a8, ctx); in append_store()
300 case kBGRA_8888_SkColorType: this->append(swap_rb); in append_store()
301 this->append(store_8888, ctx); in append_store()