diff options
author | Michel Dänzer <[email protected]> | 2007-04-09 14:52:18 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2007-04-09 14:53:41 +0200 |
commit | c96974f78cf3bbb94c01d6c84201595b4028d840 (patch) | |
tree | 511512f79203e9c4efcc25c9fed620ef6b894404 /src/mesa/main/texstore.c | |
parent | 6461e91ac3ce6160107d5df7468572c6e943f442 (diff) |
i915tex: Make sure texture format fetch hooks are initialized.
Diffstat (limited to 'src/mesa/main/texstore.c')
-rw-r--r-- | src/mesa/main/texstore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index a570525155b..9b8a06df145 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -2771,8 +2771,8 @@ fetch_texel_chan_to_float(const struct gl_texture_image *texImage, /** * Initialize the texture image's FetchTexelc and FetchTexelf methods. */ -static void -set_fetch_functions(struct gl_texture_image *texImage, GLuint dims) +void +_mesa_set_fetch_functions(struct gl_texture_image *texImage, GLuint dims) { ASSERT(dims == 1 || dims == 2 || dims == 3); ASSERT(texImage->TexFormat); @@ -2832,7 +2832,7 @@ choose_texture_format(GLcontext *ctx, struct gl_texture_image *texImage, ASSERT(texImage->TexFormat); - set_fetch_functions(texImage, dims); + _mesa_set_fetch_functions(texImage, dims); if (texImage->TexFormat->TexelBytes == 0) { /* must be a compressed format */ |