diff options
author | Brian Paul <[email protected]> | 2009-10-05 17:54:20 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-05 17:54:20 -0600 |
commit | 019bc97bd900a84f5f999afdb42928e92d33814b (patch) | |
tree | f48eeb767558acc3d314d0895239906fa87504f1 /src/mesa/main/formats.h | |
parent | be0765cd6ec47cf068775197f312a1123e044566 (diff) |
mesa: move _mesa_format_to_type_and_comps() to formats.c
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index 723e237a579..6aebb85f2be 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -152,10 +152,6 @@ _mesa_get_format_base_format(gl_format format); extern GLboolean _mesa_is_format_compressed(gl_format format); -extern void -_mesa_format_to_type_and_comps2(gl_format format, - GLenum *datatype, GLuint *comps); - extern GLuint _mesa_format_image_size(gl_format format, GLsizei width, GLsizei height, GLsizei depth); @@ -163,6 +159,9 @@ _mesa_format_image_size(gl_format format, GLsizei width, extern GLint _mesa_format_row_stride(gl_format format, GLsizei width); +extern void +_mesa_format_to_type_and_comps(gl_format format, + GLenum *datatype, GLuint *comps); extern void _mesa_test_formats(void); |