diff options
author | Brian Paul <[email protected]> | 2010-01-19 11:58:43 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-19 11:58:43 -0700 |
commit | d8d80a8d74416bffd274d3b0597706374a0c1cc8 (patch) | |
tree | a5516b205ff53d95949cf96c1632f238a7e18682 /src/gallium/drivers/llvmpipe/lp_texture.c | |
parent | 1073e39ab92a795f7b3958dd789ab324c82c00ae (diff) |
llvmpipe: fix-up comment
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_texture.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_texture.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_texture.c b/src/gallium/drivers/llvmpipe/lp_texture.c index 14f636e4aeb..1c92d7f7225 100644 --- a/src/gallium/drivers/llvmpipe/lp_texture.c +++ b/src/gallium/drivers/llvmpipe/lp_texture.c @@ -65,7 +65,8 @@ llvmpipe_texture_layout(struct llvmpipe_screen *screen, unsigned nblocksx, nblocksy; /* Allocate storage for whole quads. This is particularly important - * for depth surfaces, which are currently stored in a swizzled format. */ + * for depth surfaces, which are currently stored in a swizzled format. + */ nblocksx = util_format_get_nblocksx(pt->format, align(width, 2)); nblocksy = util_format_get_nblocksy(pt->format, align(height, 2)); |