diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-01 14:14:30 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-01 18:01:47 -0600 |
commit | f8549e8f4f8bdfebcb4e0a2754df59b3fe4fdff7 (patch) | |
tree | 18ad138e4d4e96e4eb5763b4e8caaa49da84100e /src/mesa | |
parent | 2072a9c6d0eec55b5fa6f8229287c8f8225c6d2e (diff) |
plug in _mesa_test_proxy_teximage, temporarily
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_cb_texture.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c index e1cf4861d0..4e6d4857f4 100644 --- a/src/mesa/state_tracker/st_cb_texture.c +++ b/src/mesa/state_tracker/st_cb_texture.c @@ -1599,4 +1599,7 @@ st_init_texture_functions(struct dd_function_table *functions) functions->IsTextureResident = st_IsTextureResident; functions->TextureMemCpy = do_memcpy; + + /* XXX Temporary until we can query pipe's texture sizes */ + functions->TestProxyTexImage = _mesa_test_proxy_teximage; } |