diff options
author | Brian <[email protected]> | 2007-06-11 16:32:57 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-06-11 16:32:57 -0600 |
commit | 227315278dea9095cee6e508d03b28720b2e7880 (patch) | |
tree | 58acf851f4ba7bcb6729ef6e27e5d0d8ffd59ede /src/mesa/swrast | |
parent | a28977a4c726ac5023fcefb58695498c0c5ae507 (diff) |
Replace texobj->Complete with texobj->_Complete since it's a derived field.
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r-- | src/mesa/swrast/s_texfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_texfilter.c b/src/mesa/swrast/s_texfilter.c index d4516f6faa8..c2a7512388e 100644 --- a/src/mesa/swrast/s_texfilter.c +++ b/src/mesa/swrast/s_texfilter.c @@ -3347,7 +3347,7 @@ texture_sample_func _swrast_choose_texture_sample_func( GLcontext *ctx, const struct gl_texture_object *t ) { - if (!t || !t->Complete) { + if (!t || !t->_Complete) { return &null_sample_func; } else { |