Lines Matching defs:overlay
5595 /* draw buffer used for overlay drawing operation like cursor */
5596 struct nk_command_buffer overlay;
15082 NK_MEMSET(&ctx->overlay, 0, sizeof(ctx->overlay));
15211 /* draw cursor overlay */
15217 nk_command_buffer_init(&ctx->overlay, &ctx->memory, NK_CLIPPING_OFF);
15218 nk_start_buffer(ctx, &ctx->overlay);
15225 nk_draw_image(&ctx->overlay, mouse_bounds, &cursor->img, nk_white);
15226 nk_finish_buffer(ctx, &ctx->overlay);
15260 /* append overlay commands */
15261 if (ctx->overlay.end != ctx->overlay.begin)
15262 cmd->next = ctx->overlay.begin;