| 3626 | } |
| 3627 | |
| 3628 | static void WebGPUSetTextureAsync(HContext context, HTexture texture, const TextureParams& params, SetTextureAsyncCallback callback, void* user_data) |
| 3629 | { |
| 3630 | TRACE_CALL; |
| 3631 | WebGPUSetTexture(context, texture, params); |
| 3632 | if (callback) |
| 3633 | callback(texture, user_data); |
| 3634 | } |
| 3635 | |
| 3636 | static bool WebGPUIsExtensionSupported(HContext context, const char* extension) |
| 3637 | { |
nothing calls this directly
no test coverage detected