(int width, int height, long texturePtr)
| 13 | } |
| 14 | |
| 15 | @NotNull @Contract("_, _, _ -> new") |
| 16 | public static BackendRenderTarget makeMetal(int width, int height, long texturePtr) { |
| 17 | Stats.onNativeCall(); |
| 18 | return new BackendRenderTarget(_nMakeMetal(width, height, texturePtr)); |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * <p>Creates Direct3D backend render target object from D3D12 texture resource.</p> |
nothing calls this directly
no test coverage detected