OP_DRAWCHAR       600 lib/devices/record.c     gfxmatrix_t*l = &i->state.last_matrix[OP_DRAWCHAR];
OP_DRAWCHAR       606 lib/devices/record.c     char same_font = i->state.last_string[OP_DRAWCHAR] && !strcmp(i->state.last_string[OP_DRAWCHAR], font_id);
OP_DRAWCHAR       608 lib/devices/record.c     char same_color = !memcmp(color, &i->state.last_color[OP_DRAWCHAR], sizeof(gfxcolor_t));
OP_DRAWCHAR       615 lib/devices/record.c     writer_writeU8(&i->w, OP_DRAWCHAR|flags);
OP_DRAWCHAR       627 lib/devices/record.c 	if(i->state.last_string[OP_DRAWCHAR])
OP_DRAWCHAR       628 lib/devices/record.c 	    free(i->state.last_string[OP_DRAWCHAR]);
OP_DRAWCHAR       629 lib/devices/record.c 	i->state.last_string[OP_DRAWCHAR] = strdup(font_id);
OP_DRAWCHAR       631 lib/devices/record.c 	i->state.last_color[OP_DRAWCHAR] = *color;
OP_DRAWCHAR       632 lib/devices/record.c 	i->state.last_matrix[OP_DRAWCHAR] = *matrix;
OP_DRAWCHAR       809 lib/devices/record.c 	    case OP_DRAWCHAR: {