diff options
author | Brian Paul <[email protected]> | 2010-11-24 12:00:16 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-11-24 12:11:23 -0700 |
commit | 74c324fdbaebb7accaee668f2bc54af4699d0025 (patch) | |
tree | bfe3e0e7425af3f1f804b1cfb0c40a2a79acae1e /src/mesa/main/formats.h | |
parent | 7bfbd88d2cc4c7e7c1c2fe02b0d223f4a3ea8db2 (diff) |
mesa: added _mesa_format_image_size64()
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index eeb460dabe7..997229bf9f4 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -209,6 +209,10 @@ extern GLuint _mesa_format_image_size(gl_format format, GLsizei width, GLsizei height, GLsizei depth); +extern uint64_t +_mesa_format_image_size64(gl_format format, GLsizei width, + GLsizei height, GLsizei depth); + extern GLint _mesa_format_row_stride(gl_format format, GLsizei width); |