mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 23:18:20 +02:00
mesa: use new _mesa_meta_CopyTex[Sub]Image() functions
This commit is contained in:
parent
af69346446
commit
6f9dbe7739
1 changed files with 6 additions and 5 deletions
|
|
@ -56,6 +56,7 @@
|
|||
#include "swrast/swrast.h"
|
||||
|
||||
#include "driverfuncs.h"
|
||||
#include "meta.h"
|
||||
|
||||
|
||||
|
||||
|
|
@ -100,11 +101,11 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
|
|||
driver->TexSubImage2D = _mesa_store_texsubimage2d;
|
||||
driver->TexSubImage3D = _mesa_store_texsubimage3d;
|
||||
driver->GetTexImage = _mesa_get_teximage;
|
||||
driver->CopyTexImage1D = _swrast_copy_teximage1d;
|
||||
driver->CopyTexImage2D = _swrast_copy_teximage2d;
|
||||
driver->CopyTexSubImage1D = _swrast_copy_texsubimage1d;
|
||||
driver->CopyTexSubImage2D = _swrast_copy_texsubimage2d;
|
||||
driver->CopyTexSubImage3D = _swrast_copy_texsubimage3d;
|
||||
driver->CopyTexImage1D = _mesa_meta_CopyTexImage1D;
|
||||
driver->CopyTexImage2D = _mesa_meta_CopyTexImage2D;
|
||||
driver->CopyTexSubImage1D = _mesa_meta_CopyTexSubImage1D;
|
||||
driver->CopyTexSubImage2D = _mesa_meta_CopyTexSubImage2D;
|
||||
driver->CopyTexSubImage3D = _mesa_meta_CopyTexSubImage3D;
|
||||
driver->GenerateMipmap = _mesa_generate_mipmap;
|
||||
driver->TestProxyTexImage = _mesa_test_proxy_teximage;
|
||||
driver->CompressedTexImage1D = _mesa_store_compressed_teximage1d;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue