Lines Matching refs:w
88 lv_coord_t w = lv_area_get_width(apply_area), h = lv_area_get_height(apply_area); in lv_draw_sdl_composite_begin() local
89 …osition = lv_draw_sdl_composite_texture_obtain(ctx, LV_DRAW_SDL_COMPOSITE_TEXTURE_ID_TARGET0, w, h, in lv_draw_sdl_composite_begin()
104 …s->mask = lv_draw_sdl_composite_texture_obtain(ctx, LV_DRAW_SDL_COMPOSITE_TEXTURE_ID_STREAM0, w, h, in lv_draw_sdl_composite_begin()
189 … lv_coord_t w, lv_coord_t h, bool * texture_in_cache) in lv_draw_sdl_composite_texture_obtain() argument
195 if(result == NULL || tex_size->x < w || tex_size->y < h) { in lv_draw_sdl_composite_texture_obtain()
196 lv_coord_t size = next_pow_of_2(LV_MAX(w, h)); in lv_draw_sdl_composite_texture_obtain()
248 lv_coord_t w = lv_area_get_width(coords), h = lv_area_get_height(coords); in dump_masks() local
249 SDL_assert(w > 0 && h > 0); in dump_masks()
250 SDL_Rect rect = {0, 0, w, h}; in dump_masks()
255 lv_opa_t * line_buf = lv_mem_buf_get(rect.w); in dump_masks()
257 lv_memset_ff(line_buf, rect.w); in dump_masks()
258 …t abs_x = (lv_coord_t) coords->x1, abs_y = (lv_coord_t)(y + coords->y1), len = (lv_coord_t) rect.w; in dump_masks()
262 lv_memset_00(&pixels[y * pitch], 4 * rect.w); in dump_masks()
265 lv_memset_ff(&pixels[y * pitch], 4 * rect.w); in dump_masks()
268 for(int x = 0; x < rect.w; x++) { in dump_masks()