Home
last modified time | relevance | path

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

/lvgl-3.6.0/src/extra/libs/tiny_ttf/
Dstb_rect_pack.h101 STBRP_DEF int stbrp_pack_rects(stbrp_context * context, stbrp_rect * rects, int num_rects);
140 STBRP_DEF void stbrp_init_target(stbrp_context * context, int width, int height, stbrp_node * nodes…
161 STBRP_DEF void stbrp_setup_allow_out_of_mem(stbrp_context * context, int allow_out_of_mem);
167 STBRP_DEF void stbrp_setup_heuristic(stbrp_context * context, int heuristic);
235 STBRP_DEF void stbrp_setup_heuristic(stbrp_context * context, int heuristic) in stbrp_setup_heuristic() argument
237 switch(context->init_mode) { in stbrp_setup_heuristic()
240 context->heuristic = heuristic; in stbrp_setup_heuristic()
247 STBRP_DEF void stbrp_setup_allow_out_of_mem(stbrp_context * context, int allow_out_of_mem) in stbrp_setup_allow_out_of_mem() argument
254 context->align = 1; in stbrp_setup_allow_out_of_mem()
263 context->align = (context->width + context->num_nodes - 1) / context->num_nodes; in stbrp_setup_allow_out_of_mem()
[all …]
Dstb_truetype_htcw.h4284 stbrp_context * context = (stbrp_context *)STBTT_malloc(sizeof(*context), alloc_context); local
4288 if(context == NULL || nodes == NULL) {
4289 if(context != NULL) STBTT_free(context, alloc_context);
4298 spc->pack_info = context;
4306 stbrp_init_target(context, pw - padding, ph - padding, nodes, num_nodes);
/lvgl-3.6.0/docs/porting/
Dgpu.md4 ## Draw context
33 The `lv_disp_drv_t` has 4 fields related to the draw context:
37 - `size_t draw_ctx_size` Size of the draw context structure. E.g. `sizeof(lv_draw_sw_ctx_t)`
/lvgl-3.6.0/docs/get-started/platforms/
Dnxp.md13 through an API named VGLite. Each accelerator has its own context that allows them to be used indiv…
79 - src/draw/nxp/pxp/lv_draw_pxp.c[.h]: draw context callbacks
165 - src/draw/nxp/vglite/lv_draw_vglite.c[.h]: draw context callbacks
Drenesas.md8 …ave-2d GPU, depending on the platform used. Each accelerator has its own context, allowing them to…
/lvgl-3.6.0/docs/overview/
Ddrawing.md148 …trix's button) it sends events before and after drawing that part with some context of the drawing.
151 In these events an `lv_obj_draw_part_t` structure is used to describe the context of the drawing. N…