Module: Mesa Branch: master Commit: 6b3f56f099733c1cc89648814e9793b92a0ffe38 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6b3f56f099733c1cc89648814e9793b92a0ffe38
Author: Kristian H. Kristensen <[email protected]> Date: Wed Jul 29 12:51:07 2020 -0700 anv: Add stub for anv_gem_get_tiling() for Android Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6112> --- src/intel/vulkan/anv_gem_stubs.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/intel/vulkan/anv_gem_stubs.c b/src/intel/vulkan/anv_gem_stubs.c index d232ff4e905..d6636d3ccd8 100644 --- a/src/intel/vulkan/anv_gem_stubs.c +++ b/src/intel/vulkan/anv_gem_stubs.c @@ -103,6 +103,12 @@ anv_gem_set_tiling(struct anv_device *device, return 0; } +int +anv_gem_get_tiling(struct anv_device *device, uint32_t gem_handle) +{ + return 0; +} + int anv_gem_set_caching(struct anv_device *device, uint32_t gem_handle, uint32_t caching) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
