Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 1 of 1) sorted by relevance

/StarryEngine/starry_client/src/base/
H A Drenderer.rs129 let stop = cmp::min(start + image_data.len(), window_data.len()); in image_over() localVariable
132 window_data[start..stop].copy_from_slice(&image_data[..end]); in image_over()
158 let mut stop = start + w; in image_opaque() localVariable
163 stop = (start_y + l + 1) * width - 1; in image_opaque()
164 end = begin + stop - start; in image_opaque()
166 window_data[start..stop].copy_from_slice(&image_data[begin..end]); in image_opaque()
190 let mut stop = start + w; in image_fast() localVariable
196 stop = (start_y + l + 1) * width; in image_fast()
203 if alpha > 0 && (start + k) < window_data.len() && (start + k) < stop { in image_fast()