diff options
author | Brian Paul <[email protected]> | 2005-10-01 16:09:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-01 16:09:26 +0000 |
commit | 2794507289afcbfd6e2dd4f01b9fb404c507a587 (patch) | |
tree | 3b16b9cb11aef5a80a29eed09447d46b1f342f20 | |
parent | 184a9707227ab024d65d352fe7c09b3e287348e9 (diff) |
plug in _mesa_texstore_z24_s8()
-rw-r--r-- | src/mesa/main/texformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texformat.c b/src/mesa/main/texformat.c index 2cea5151f93..5ef9e46df22 100644 --- a/src/mesa/main/texformat.c +++ b/src/mesa/main/texformat.c @@ -1107,7 +1107,7 @@ const struct gl_texture_format _mesa_texformat_z24_s8 = { 24, /* DepthBits */ 8, /* StencilBits */ 4, /* TexelBytes */ - NULL/*_mesa_texstore_z24_s8*/, /* StoreTexImageFunc */ + _mesa_texstore_z24_s8, /* StoreTexImageFunc */ NULL, /* FetchTexel1D */ NULL, /* FetchTexel2D */ NULL, /* FetchTexel3D */ |