Searched defs:row_block_count (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface_base.c348 UINT row_block_count = (This->currentDesc.Width + format_desc->block_width - 1) / format_desc->block_width; local
349 ret = row_block_count * format_desc->block_byte_count;
1745 UINT row_block_count; local
1759 row_block_count = (w + dEntry->block_width - 1) / dEntry->block_width;
1762 memcpy(dbuf, sbuf, row_block_count * dEntry->block_byte_count);
H A Dsurface.c152 UINT row_block_count = (width + format_desc->block_width - 1) / format_desc->block_width; local
154 size = row_count * row_block_count * format_desc->block_byte_count;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dutils.c1982 UINT row_block_count = (width + format->block_width - 1) / format->block_width; local
1984 size = row_count * (((row_block_count * format->block_byte_count) + alignment - 1) & ~(alignment - 1));
H A Dsurface.c3511 UINT row_block_count = (surface->resource.width + format->block_width - 1) / format->block_width; local
3512 pitch = row_block_count * format->block_byte_count;
6935 UINT row_block_count; local
6943 row_block_count = (update_w + format->block_width - 1) / format->block_width;
6949 memcpy(dst_row, src_row, row_block_count * format->block_byte_count);
6975 for (x = 0; x < row_block_count; ++x)
7002 for (x = 0; x < row_block_count; ++x)

Completed in 202 milliseconds