Home | History | Annotate | Download | only in decoder

Lines Matching refs:rect

65     RECT rect;
76 rect.left = 0;
77 rect.top = 0;
78 rect.right = 8 * strlen(sz_formatted);
79 rect.bottom = 8;
86 hbm_temp = create_bitmap(rect.right, rect.bottom, 1, 1, NULL);
113 b_rc = bit_blt(hdc_memory, rect.left, rect.top, rect.right, rect.bottom, hdc_memory, rect.left, rect.top, BLACKNESS);
118 b_rc = ext_text_out(hdc_memory, 0, 0, ETO_CLIPPED, &rect, sz_formatted, strlen(sz_formatted), NULL);
123 for (y = rect.top; y < rect.bottom; ++y)
125 for (x = rect.left; x < rect.right; ++x)
127 if (get_pixel(hdc_memory, x, rect.bottom - 1 - y))