@babylonjs/react-native 2.0.0 → 2.0.1-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/react-native-babylon.podspec +2 -0
- package/shared/BabylonNative/CMakeLists.txt +2 -0
- package/shared/BabylonNative/Repo/CMakeLists.txt +16 -12
- package/shared/BabylonNative/Repo/Core/Graphics/CMakeLists.txt +41 -21
- package/shared/BabylonNative/Repo/Core/Graphics/Include/Platform/iOS/Babylon/Graphics/Platform.h +2 -2
- package/shared/BabylonNative/Repo/Core/Graphics/Include/Platform/macOS/Babylon/Graphics/Platform.h +2 -2
- package/shared/BabylonNative/Repo/Core/Graphics/Include/Platform/visionOS/Babylon/Graphics/Platform.h +2 -2
- package/shared/BabylonNative/Repo/Core/Graphics/Include/RendererType/Metal/Babylon/Graphics/RendererType.h +6 -6
- package/shared/BabylonNative/Repo/Core/Graphics/InternalInclude/Babylon/Graphics/BgfxCallback.h +1 -1
- package/shared/BabylonNative/Repo/Core/Graphics/Source/BgfxCallback.cpp +32 -9
- package/shared/BabylonNative/Repo/Core/Graphics/Source/DeviceImpl.cpp +7 -5
- package/shared/BabylonNative/Repo/Core/Graphics/Source/{DeviceImpl_Metal.cpp → DeviceImpl_Metal.mm} +4 -3
- package/shared/BabylonNative/Repo/Core/Graphics/Source/DeviceImpl_iOS.mm +5 -3
- package/shared/BabylonNative/Repo/Core/Graphics/Source/DeviceImpl_macOS.mm +10 -1
- package/shared/BabylonNative/Repo/Core/Graphics/Source/DeviceImpl_visionOS.mm +2 -4
- package/shared/BabylonNative/Repo/Dependencies/CMakeLists.txt +77 -12
- package/shared/BabylonNative/Repo/Dependencies/xr/CMakeLists.txt +1 -3
- package/shared/BabylonNative/Repo/Plugins/ExternalTexture/CMakeLists.txt +1 -6
- package/shared/BabylonNative/Repo/Plugins/ExternalTexture/Source/ExternalTexture_D3D11.cpp +4 -0
- package/shared/BabylonNative/Repo/Plugins/ExternalTexture/Source/ExternalTexture_D3D12.cpp +4 -0
- package/shared/BabylonNative/Repo/Plugins/ExternalTexture/Source/{ExternalTexture_Metal.mm → ExternalTexture_Metal.cpp} +128 -120
- package/shared/BabylonNative/Repo/Plugins/NativeCamera/CMakeLists.txt +2 -2
- package/shared/BabylonNative/Repo/Plugins/NativeCamera/Source/Apple/CameraDevice.mm +5 -5
- package/shared/BabylonNative/Repo/Plugins/NativeEngine/CMakeLists.txt +2 -1
- package/shared/BabylonNative/Repo/Plugins/NativeEngine/Source/NativeEngine.cpp +2 -1
- package/shared/BabylonNative/Repo/Plugins/NativeEngine/Source/ShaderProvider.cpp +6 -6
- package/shared/BabylonNative/Repo/Plugins/NativeOptimizations/CMakeLists.txt +1 -2
- package/shared/BabylonNative/Repo/Plugins/NativeTracing/CMakeLists.txt +1 -2
- package/shared/BabylonNative/Repo/Plugins/NativeXr/Source/NativeXrImpl.cpp +1 -0
- package/shared/BabylonNative/Repo/Plugins/ShaderCache/CMakeLists.txt +0 -2
- package/shared/BabylonNative/Repo/Plugins/ShaderCache/Include/Babylon/Plugins/ShaderCache.h +2 -2
- package/shared/BabylonNative/Repo/Plugins/ShaderCache/Source/ShaderCache.cpp +2 -2
- package/shared/BabylonNative/Repo/Plugins/ShaderCache/Source/ShaderCacheImpl.cpp +4 -4
- package/shared/BabylonNative/Repo/Plugins/ShaderCache/Source/ShaderCacheImpl.h +2 -2
- package/shared/BabylonNative/Repo/Plugins/ShaderCompiler/Source/ShaderCompilerCommon.cpp +2 -0
- package/shared/BabylonNative/Repo/Plugins/ShaderCompiler/Source/ShaderCompilerTraversers.cpp +4 -0
- package/shared/BabylonNative/Repo/Plugins/TestUtils/CMakeLists.txt +6 -8
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Include/Babylon/Plugins/TestUtils.h +0 -1
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/TestUtils.cpp +20 -6
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/TestUtils.h +13 -13
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/{Android/TestUtilsImpl.cpp → TestUtils_Android.cpp} +1 -10
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/{Unix/TestUtilsImpl.cpp → TestUtils_Unix.cpp} +10 -20
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/{Win32/TestUtilsImpl.cpp → TestUtils_Win32.cpp} +10 -20
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/{WinRT/TestUtilsImpl.cpp → TestUtils_WinRT.cpp} +9 -13
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/TestUtils_iOS.mm +25 -0
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/TestUtils_macOS.mm +50 -0
- package/shared/BabylonNative/Repo/Polyfills/Canvas/Source/Shaders/dx11/fs_boxblur.h +1 -1
- package/shared/BabylonNative/Repo/Polyfills/Canvas/Source/Shaders/dx11/fs_gaussblur.h +1 -1
- package/shared/BabylonNative/Repo/Polyfills/Canvas/Source/Shaders/dx11/fs_nanovg_fill.h +1 -1
- package/shared/BabylonNative/Repo/Polyfills/Canvas/Source/Shaders/dx11/vs_fspass.h +1 -1
- package/shared/BabylonNative/Repo/Polyfills/Canvas/Source/Shaders/dx11/vs_nanovg_fill.h +1 -1
- package/shared/BabylonNative/Repo/Polyfills/Canvas/shaderc.cmake +2 -2
- package/shared/BabylonNative/Repo/azure-pipelines.yml +36 -24
- package/shared/BabylonNative/deps/arcana.cpp-src/CMakeLists.txt +17 -1
- package/shared/BabylonNative/deps/arcana.cpp-src/README.md +1 -1
- package/shared/BabylonNative/deps/arcana.cpp-src/Source/Shared/arcana/string.h +0 -12
- package/shared/BabylonNative/deps/arcana.cpp-src/Source/Shared/arcana/threading/cancellation.h +25 -12
- package/shared/BabylonNative/deps/arcana.cpp-src/Source/Windows.Test/Threading/CancellationMemoryLeakTest.cpp +37 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/CMakeLists.txt +3 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/README.md +5 -5
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/LICENSE +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/README.md +31 -14
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/args.h +5 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/aviwriter.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/bgfx_utils.cpp +4 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/bgfx_utils.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/common.h +43 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/common.sh +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/debugdraw.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/debugdraw.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_fill.bin.h +180 -29
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_fill.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_fill_lit.bin.h +305 -92
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_fill_lit.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_fill_texture.bin.h +328 -26
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_fill_texture.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_lines.bin.h +227 -13
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_lines.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_lines_stipple.bin.h +290 -38
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/fs_debugdraw_lines_stipple.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/makefile +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill.bin.h +319 -95
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill.sc +2 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_lit.bin.h +410 -133
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_lit.sc +2 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_lit_mesh.bin.h +378 -120
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_lit_mesh.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_mesh.bin.h +290 -85
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_mesh.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_texture.bin.h +259 -18
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_fill_texture.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_lines.bin.h +228 -14
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_lines.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.bin.h +255 -16
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/debugdraw/vs_debugdraw_lines_stipple.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/cmd.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/cmd.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/dbg.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/dialog.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/dialog.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_android.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_glfw.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_html5.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_ios.mm +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_noop.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_osx.mm +2 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_p.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_sdl.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_windows.cpp +3 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/entry_x11.cpp +2 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/input.cpp +2 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/entry/input.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/example-glue.cpp +21 -9
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_basic.bin.h +391 -75
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_distance_field.bin.h +382 -119
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_distance_field_drop_shadow.bin.h +587 -227
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_distance_field_drop_shadow_image.bin.h +655 -265
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_distance_field_outline.bin.h +452 -164
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_distance_field_outline_drop_shadow_image.bin.h +719 -307
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_distance_field_outline_image.bin.h +535 -208
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/fs_font_distance_field_subpixel.bin.h +495 -125
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/makefile +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_basic.bin.h +254 -16
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_distance_field.bin.h +254 -16
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_distance_field_drop_shadow.bin.h +340 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_distance_field_drop_shadow_image.bin.h +340 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_distance_field_outline.bin.h +310 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_distance_field_outline_drop_shadow_image.bin.h +340 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_distance_field_outline_image.bin.h +310 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/font/vs_font_distance_field_subpixel.bin.h +254 -16
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_image.bin.h +277 -59
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_ocornut_imgui.bin.h +324 -25
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/imgui.cpp +9 -9
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/imgui.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/makefile +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_image.bin.h +219 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_ocornut_imgui.bin.h +239 -7
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/nanovg/fs_nanovg_fill.bin.h +925 -472
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/nanovg/makefile +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/nanovg/nanovg_bgfx.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/nanovg/nanovg_bgfx.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/nanovg/vs_nanovg_fill.bin.h +223 -7
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/packrect.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/ps/fs_particle.bin.h +382 -70
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/ps/fs_particle.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/ps/makefile +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/ps/particle_system.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/ps/particle_system.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/ps/vs_particle.bin.h +263 -18
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/ps/vs_particle.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/shaderlib.sh +10 -7
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/include/bgfx/bgfx.h +149 -7
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/include/bgfx/c99/bgfx.h +225 -101
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/include/bgfx/defines.h +30 -21
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/include/bgfx/embedded_shader.h +110 -60
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/include/bgfx/platform.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/makefile +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/bgfx.idl +189 -70
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/bgfx.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/bindings-bf.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/bindings-c3.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/bindings-cs.lua +2 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/bindings-zig.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/example-common.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/genie.lua +3 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/geometryc.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/geometryv.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/shader-embeded.mk +18 -4
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/shader.mk +21 -6
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/shaderc.lua +139 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/temp.bgfx.h +2 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/temp.bgfx.hpp +2 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/temp.bgfx.idl.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/temp.defines.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/texturec.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/texturev.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/scripts/tools.mk +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/amalgamated.cpp +2 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/amalgamated.mm +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/bgfx.cpp +406 -164
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/bgfx.idl.inl +37 -9
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/bgfx_compute.sh +40 -43
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/bgfx_p.h +795 -170
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/bgfx_shader.sh +205 -73
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/charset.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/config.h +18 -4
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/debug_renderdoc.cpp +8 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/debug_renderdoc.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/dxgi.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/dxgi.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/emscripten.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear0.bin.h +190 -36
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear0.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear1.bin.h +223 -46
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear1.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear2.bin.h +253 -55
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear2.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear3.bin.h +283 -65
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear3.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear4.bin.h +314 -75
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear4.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear5.bin.h +343 -85
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear5.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear6.bin.h +373 -94
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear6.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear7.bin.h +404 -105
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_clear7.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_debugfont.bin.h +401 -67
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/fs_debugfont.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/glcontext_egl.cpp +114 -36
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/glcontext_egl.h +5 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/glcontext_html5.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/glcontext_html5.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/glcontext_wgl.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/glcontext_wgl.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/glimports.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/makefile +17 -13
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/nvapi.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/nvapi.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer.h +50 -29
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_agc.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_d3d.h +7 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_d3d11.cpp +291 -180
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_d3d11.h +5 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_d3d12.cpp +635 -218
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_d3d12.h +78 -10
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_gl.cpp +65 -45
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_gl.h +24 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_gnm.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_mtl.h +50 -24
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_mtl.mm +158 -56
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_noop.cpp +8 -12
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_nvn.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_vk.cpp +810 -445
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_vk.h +194 -133
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_webgpu.cpp +6239 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/renderer_webgpu.h +897 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/shader.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/shader.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/shader_dxbc.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/shader_dxbc.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/shader_spirv.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/shader_spirv.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/topology.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/topology.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/version.h +3 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/vertexlayout.cpp +2 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/vertexlayout.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/vs_clear.bin.h +186 -24
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/vs_clear.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/vs_debugfont.bin.h +314 -44
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/src/vs_debugfont.sc +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/3rdparty/nvtt/bc7/avpcl_mode4.cpp +2 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/3rdparty/nvtt/nvcore/debug.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/3rdparty/nvtt/nvtt.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/LICENSE +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/README.md +2 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/include/bimg/bimg.h +5 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/include/bimg/decode.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/include/bimg/encode.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/makefile +183 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/scripts/bimg.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/scripts/bimg_decode.lua +2 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/scripts/bimg_encode.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/scripts/genie.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/scripts/texturec.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/src/bimg_p.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/src/config.h +52 -40
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/src/image.cpp +136 -120
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/src/image_cubemap_filter.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/src/image_decode.cpp +17 -5
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/src/image_encode.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/src/image_gnf.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bimg/tools/texturec/texturec.cpp +3 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/LICENSE +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/README.md +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/allocator.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/bounds.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/bx.h +43 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/commandline.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/config.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/constants.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/cpu.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/debug.h +15 -5
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/easing.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/endian.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/error.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/file.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/filepath.h +5 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/float4x4_t.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/handlealloc.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/hash.h +31 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/allocator.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/bounds.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/bx.inl +141 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/cpu.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/easing.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/endian.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/error.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/float4x4_t.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/handlealloc.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/hash.inl +28 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/math.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/mpscqueue.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/mutex.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/os.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/pixelformat.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/readerwriter.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/ringbuffer.inl +76 -8
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/rng.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/simd128_langext.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/simd128_neon.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/simd128_ref.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/simd128_sse.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/simd256_avx.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/simd256_ref.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/simd_ni.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/sort.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/spscqueue.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/string.inl +237 -48
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/timer.inl +67 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/typetraits.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/inline/uint32_t.inl +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/macros.h +6 -6
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/math.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/mpscqueue.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/mutex.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/os.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/pixelformat.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/platform.h +3 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/process.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/readerwriter.h +9 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/ringbuffer.h +145 -14
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/rng.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/semaphore.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/settings.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/simd_t.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/sort.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/spscqueue.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/string.h +111 -42
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/thread.h +5 -5
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/timer.h +59 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/typetraits.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/uint32_t.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/include/bx/url.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/scripts/bin2c.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/scripts/bx.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/scripts/genie.lua +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/scripts/toolchain.lua +36 -18
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/allocator.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/amalgamated.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/bounds.cpp +10 -10
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/bx.cpp +3 -3
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/commandline.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/crtnone.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/debug.cpp +866 -64
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/dtoa.cpp +3 -9
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/easing.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/file.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/filepath.cpp +7 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/hash.cpp +195 -37
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/math.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/mutex.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/os.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/process.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/semaphore.cpp +27 -6
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/settings.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/sort.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/string.cpp +206 -49
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/thread.cpp +35 -38
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/timer.cpp +5 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/src/url.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/allocator_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/atomic_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/cast_test.cpp +99 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/crt_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/dbg.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/easing_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/filepath_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/handle_bench.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/handle_test.cpp +6 -6
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/hash_test.cpp +37 -8
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/macros_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/main_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/math_bench.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/math_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/os_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/pixelformat_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/queue_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/readerwriter_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/ringbuffer_test.cpp +112 -7
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/rng_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/run_test.cpp +6 -4
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/settings_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/simd_bench.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/simd_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/sort_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/string_test.cpp +92 -39
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/test.h +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/thread_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/tokenizecmd_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/typetraits_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/uint32_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/url_test.cpp +1 -1
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tests/vsnprintf_test.cpp +365 -77
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tools/bin/darwin/genie +0 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tools/bin/linux/genie +0 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tools/bin/windows/genie.exe +0 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/bx/tools/bin2c/bin2c.cpp +2 -2
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bgfx/3rdparty/glslang.cmake +6 -5
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bgfx/3rdparty/spirv-opt.cmake +5 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bgfx/3rdparty/tint.cmake +98 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bgfx/CMakeLists.txt +1 -0
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bgfx/bgfx.cmake +11 -9
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bgfx/examples.cmake +16 -4
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bgfx/shaderc.cmake +21 -10
- package/shared/BabylonNative/deps/bgfx.cmake-src/cmake/bx/bx.cmake +5 -0
- package/shared/BabylonNative/deps/cmakeextensions-src/CMakeLists.txt +31 -5
- package/shared/BabylonNative/deps/cmakeextensions-src/README.md +6 -1
- package/shared/BabylonNative/deps/jsruntimehost-src/CMakeLists.txt +6 -5
- package/shared/BabylonNative/deps/jsruntimehost-src/Core/Node-API/Source/js_native_api_javascriptcore.cc +58 -4
- package/shared/BabylonNative/deps/jsruntimehost-src/Polyfills/CMakeLists.txt +4 -0
- package/shared/BabylonNative/deps/jsruntimehost-src/Polyfills/TextDecoder/CMakeLists.txt +15 -0
- package/shared/BabylonNative/deps/jsruntimehost-src/Polyfills/TextDecoder/Include/Babylon/Polyfills/TextDecoder.h +9 -0
- package/shared/BabylonNative/deps/jsruntimehost-src/Polyfills/TextDecoder/README.md +39 -0
- package/shared/BabylonNative/deps/jsruntimehost-src/Polyfills/TextDecoder/Source/TextDecoder.cpp +91 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/Foundation.hpp +47 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSArray.hpp +124 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSAutoreleasePool.hpp +83 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSBundle.hpp +374 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSData.hpp +54 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSDate.hpp +53 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSDefines.hpp +45 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSDictionary.hpp +128 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSEnumerator.hpp +78 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSError.hpp +173 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSLock.hpp +118 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSNotification.hpp +110 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSNumber.hpp +501 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSObjCRuntime.hpp +43 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSObject.hpp +302 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSPrivate.hpp +531 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSProcessInfo.hpp +386 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSRange.hpp +83 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSSet.hpp +87 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSSharedPtr.hpp +310 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSString.hpp +255 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSTypes.hpp +51 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Foundation/NSURL.hpp +90 -0
- package/shared/BabylonNative/deps/metal-cpp-src/LICENSE.txt +202 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4AccelerationStructure.hpp +1395 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4Archive.hpp +93 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4ArgumentTable.hpp +187 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4BinaryFunction.hpp +50 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4BinaryFunctionDescriptor.hpp +97 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4CommandAllocator.hpp +100 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4CommandBuffer.hpp +193 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4CommandEncoder.hpp +134 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4CommandQueue.hpp +283 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4CommitFeedback.hpp +62 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4Compiler.hpp +345 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4CompilerTask.hpp +63 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4ComputeCommandEncoder.hpp +300 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4ComputePipeline.hpp +158 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4Counters.hpp +138 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4FunctionDescriptor.hpp +49 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4LibraryDescriptor.hpp +98 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4LibraryFunctionDescriptor.hpp +86 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4LinkingDescriptor.hpp +204 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4MachineLearningCommandEncoder.hpp +66 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4MachineLearningPipeline.hpp +172 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4MeshRenderPipeline.hpp +413 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4PipelineDataSetSerializer.hpp +85 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4PipelineState.hpp +150 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4RenderCommandEncoder.hpp +340 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4RenderPass.hpp +280 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4RenderPipeline.hpp +587 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4SpecializedFunctionDescriptor.hpp +100 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4StitchedFunctionDescriptor.hpp +86 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTL4TileRenderPipeline.hpp +173 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLAccelerationStructure.hpp +1887 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLAccelerationStructureCommandEncoder.hpp +260 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLAccelerationStructureTypes.hpp +292 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLAllocation.hpp +40 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLArgument.hpp +787 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLArgumentEncoder.hpp +235 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLBinaryArchive.hpp +152 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLBlitCommandEncoder.hpp +226 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLBlitPass.hpp +154 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLBuffer.hpp +119 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLCaptureManager.hpp +217 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLCaptureScope.hpp +91 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLCommandBuffer.hpp +464 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLCommandEncoder.hpp +117 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLCommandQueue.hpp +158 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLComputeCommandEncoder.hpp +324 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLComputePass.hpp +169 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLComputePipeline.hpp +439 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLCounters.hpp +243 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLDataType.hpp +129 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLDefines.hpp +41 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLDepthStencil.hpp +277 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLDevice.hpp +1493 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLDrawable.hpp +90 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLDynamicLibrary.hpp +78 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLEvent.hpp +170 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLFence.hpp +55 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLFunctionConstantValues.hpp +76 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLFunctionDescriptor.hpp +153 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLFunctionHandle.hpp +65 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLFunctionLog.hpp +101 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLFunctionStitching.hpp +319 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLGPUAddress.hpp +36 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLHeaderBridge.hpp +3120 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLHeap.hpp +318 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLIOCommandBuffer.hpp +182 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLIOCommandQueue.hpp +211 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLIOCompressor.hpp +94 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLIndirectCommandBuffer.hpp +376 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLIndirectCommandEncoder.hpp +272 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLIntersectionFunctionTable.hpp +173 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLLibrary.hpp +786 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLLinkedFunctions.hpp +110 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLLogState.hpp +111 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLParallelRenderCommandEncoder.hpp +83 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLPipeline.hpp +104 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLPixelFormat.hpp +173 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLPrivate.hpp +156 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLRasterizationRate.hpp +337 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLRenderCommandEncoder.hpp +1019 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLRenderPass.hpp +792 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLRenderPipeline.hpp +1876 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLResidencySet.hpp +178 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLResource.hpp +190 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLResourceStateCommandEncoder.hpp +98 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLResourceStatePass.hpp +154 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLResourceViewPool.hpp +118 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLSampler.hpp +345 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLStageInputOutputDescriptor.hpp +356 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLTensor.hpp +297 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLTexture.hpp +803 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLTextureViewPool.hpp +59 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLTypes.hpp +164 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLVersion.hpp +32 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLVertexDescriptor.hpp +326 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/MTLVisibleFunctionTable.hpp +96 -0
- package/shared/BabylonNative/deps/metal-cpp-src/Metal/Metal.hpp +120 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTL4FXFrameInterpolator.hpp +47 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTL4FXSpatialScaler.hpp +49 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTL4FXTemporalDenoisedScaler.hpp +49 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTL4FXTemporalScaler.hpp +49 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTLFXDefines.hpp +41 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTLFXFrameInterpolator.hpp +719 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTLFXPrivate.hpp +482 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTLFXSpatialScaler.hpp +397 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTLFXTemporalDenoisedScaler.hpp +1208 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MTLFXTemporalScaler.hpp +803 -0
- package/shared/BabylonNative/deps/metal-cpp-src/MetalFX/MetalFX.hpp +35 -0
- package/shared/BabylonNative/deps/metal-cpp-src/QuartzCore/CADefines.hpp +41 -0
- package/shared/BabylonNative/deps/metal-cpp-src/QuartzCore/CAMetalDrawable.hpp +57 -0
- package/shared/BabylonNative/deps/metal-cpp-src/QuartzCore/CAMetalLayer.hpp +216 -0
- package/shared/BabylonNative/deps/metal-cpp-src/QuartzCore/CAPrivate.hpp +150 -0
- package/shared/BabylonNative/deps/metal-cpp-src/QuartzCore/QuartzCore.hpp +28 -0
- package/shared/BabylonNative/deps/metal-cpp-src/README.md +313 -0
- package/shared/BabylonNative/deps/metal-cpp-src/SingleHeader/MakeSingleHeader.py +271 -0
- package/shared/BabylonNative/deps/metal-cpp-src/SingleHeader/Metal.hpp +28735 -0
- package/shared/BabylonNative/deps/spirv-cross-src/spirv_hlsl.cpp +173 -222
- package/shared/BabylonNative/deps/urllib-src/CMakeLists.txt +6 -7
- package/shared/BabylonNative/deps/urllib-src/Source/UrlRequest_Unix.cpp +1 -1
- package/shared/BabylonNative.cpp +4 -0
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/Apple/TestUtilsImpl.mm +0 -57
- package/shared/BabylonNative/Repo/Plugins/TestUtils/Source/TestUtilsImplData.h +0 -18
- package/shared/BabylonNative/deps/arcana.cpp-src/Source/Android/Arcana.Android.vcxproj +0 -186
- package/shared/BabylonNative/deps/arcana.cpp-src/Source/Shared/Arcana.vcxitems +0 -47
- package/shared/BabylonNative/deps/arcana.cpp-src/Source/Windows/Arcana.Windows.Reference.vcxitems +0 -30
- package/shared/BabylonNative/deps/arcana.cpp-src/Source/Windows/Arcana.Windows.vcxproj +0 -218
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/bounds.cpp +0 -2178
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/bounds.h +0 -448
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_color.bin.h +0 -100
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_color.sc +0 -13
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_cubemap.bin.h +0 -223
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_cubemap.sc +0 -21
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_image_swizz.bin.h +0 -256
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_image_swizz.sc +0 -22
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_latlong.bin.h +0 -308
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_latlong.sc +0 -38
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_texture.bin.h +0 -180
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/fs_imgui_texture.sc +0 -16
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_color.bin.h +0 -195
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_color.sc +0 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_cubemap.bin.h +0 -203
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_cubemap.sc +0 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_latlong.bin.h +0 -205
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_latlong.sc +0 -15
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_texture.bin.h +0 -233
- package/shared/BabylonNative/deps/bgfx.cmake-src/bgfx/examples/common/imgui/vs_imgui_texture.sc +0 -16
|
@@ -0,0 +1,3120 @@
|
|
|
1
|
+
//-------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
2
|
+
//
|
|
3
|
+
// Metal/MTLHeaderBridge.hpp
|
|
4
|
+
//
|
|
5
|
+
// Copyright 2020-2024 Apple Inc.
|
|
6
|
+
//
|
|
7
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
// you may not use this file except in compliance with the License.
|
|
9
|
+
// You may obtain a copy of the License at
|
|
10
|
+
//
|
|
11
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
//
|
|
13
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
// See the License for the specific language governing permissions and
|
|
17
|
+
// limitations under the License.
|
|
18
|
+
//
|
|
19
|
+
//-------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
20
|
+
|
|
21
|
+
#pragma once
|
|
22
|
+
#include "MTLPrivate.hpp"
|
|
23
|
+
|
|
24
|
+
namespace MTL::Private::Class
|
|
25
|
+
{
|
|
26
|
+
|
|
27
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureBoundingBoxGeometryDescriptor);
|
|
28
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureCurveGeometryDescriptor);
|
|
29
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureDescriptor);
|
|
30
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureGeometryDescriptor);
|
|
31
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureMotionBoundingBoxGeometryDescriptor);
|
|
32
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureMotionCurveGeometryDescriptor);
|
|
33
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureMotionTriangleGeometryDescriptor);
|
|
34
|
+
_MTL_PRIVATE_DEF_CLS(MTL4AccelerationStructureTriangleGeometryDescriptor);
|
|
35
|
+
_MTL_PRIVATE_DEF_CLS(MTL4ArgumentTableDescriptor);
|
|
36
|
+
_MTL_PRIVATE_DEF_CLS(MTL4BinaryFunctionDescriptor);
|
|
37
|
+
_MTL_PRIVATE_DEF_CLS(MTL4CommandAllocatorDescriptor);
|
|
38
|
+
_MTL_PRIVATE_DEF_CLS(MTL4CommandBufferOptions);
|
|
39
|
+
_MTL_PRIVATE_DEF_CLS(MTL4CommandQueueDescriptor);
|
|
40
|
+
_MTL_PRIVATE_DEF_CLS(MTL4CommitOptions);
|
|
41
|
+
_MTL_PRIVATE_DEF_CLS(MTL4CompilerDescriptor);
|
|
42
|
+
_MTL_PRIVATE_DEF_CLS(MTL4CompilerTaskOptions);
|
|
43
|
+
_MTL_PRIVATE_DEF_CLS(MTL4ComputePipelineDescriptor);
|
|
44
|
+
_MTL_PRIVATE_DEF_CLS(MTL4CounterHeapDescriptor);
|
|
45
|
+
_MTL_PRIVATE_DEF_CLS(MTL4FunctionDescriptor);
|
|
46
|
+
_MTL_PRIVATE_DEF_CLS(MTL4IndirectInstanceAccelerationStructureDescriptor);
|
|
47
|
+
_MTL_PRIVATE_DEF_CLS(MTL4InstanceAccelerationStructureDescriptor);
|
|
48
|
+
_MTL_PRIVATE_DEF_CLS(MTL4LibraryDescriptor);
|
|
49
|
+
_MTL_PRIVATE_DEF_CLS(MTL4LibraryFunctionDescriptor);
|
|
50
|
+
_MTL_PRIVATE_DEF_CLS(MTL4MachineLearningPipelineDescriptor);
|
|
51
|
+
_MTL_PRIVATE_DEF_CLS(MTL4MachineLearningPipelineReflection);
|
|
52
|
+
_MTL_PRIVATE_DEF_CLS(MTL4MeshRenderPipelineDescriptor);
|
|
53
|
+
_MTL_PRIVATE_DEF_CLS(MTL4PipelineDataSetSerializerDescriptor);
|
|
54
|
+
_MTL_PRIVATE_DEF_CLS(MTL4PipelineDescriptor);
|
|
55
|
+
_MTL_PRIVATE_DEF_CLS(MTL4PipelineOptions);
|
|
56
|
+
_MTL_PRIVATE_DEF_CLS(MTL4PipelineStageDynamicLinkingDescriptor);
|
|
57
|
+
_MTL_PRIVATE_DEF_CLS(MTL4PrimitiveAccelerationStructureDescriptor);
|
|
58
|
+
_MTL_PRIVATE_DEF_CLS(MTL4RenderPassDescriptor);
|
|
59
|
+
_MTL_PRIVATE_DEF_CLS(MTL4RenderPipelineBinaryFunctionsDescriptor);
|
|
60
|
+
_MTL_PRIVATE_DEF_CLS(MTL4RenderPipelineColorAttachmentDescriptor);
|
|
61
|
+
_MTL_PRIVATE_DEF_CLS(MTL4RenderPipelineColorAttachmentDescriptorArray);
|
|
62
|
+
_MTL_PRIVATE_DEF_CLS(MTL4RenderPipelineDescriptor);
|
|
63
|
+
_MTL_PRIVATE_DEF_CLS(MTL4RenderPipelineDynamicLinkingDescriptor);
|
|
64
|
+
_MTL_PRIVATE_DEF_CLS(MTL4SpecializedFunctionDescriptor);
|
|
65
|
+
_MTL_PRIVATE_DEF_CLS(MTL4StaticLinkingDescriptor);
|
|
66
|
+
_MTL_PRIVATE_DEF_CLS(MTL4StitchedFunctionDescriptor);
|
|
67
|
+
_MTL_PRIVATE_DEF_CLS(MTL4TileRenderPipelineDescriptor);
|
|
68
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureBoundingBoxGeometryDescriptor);
|
|
69
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureCurveGeometryDescriptor);
|
|
70
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureDescriptor);
|
|
71
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureGeometryDescriptor);
|
|
72
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor);
|
|
73
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureMotionCurveGeometryDescriptor);
|
|
74
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureMotionTriangleGeometryDescriptor);
|
|
75
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructurePassDescriptor);
|
|
76
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructurePassSampleBufferAttachmentDescriptor);
|
|
77
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray);
|
|
78
|
+
_MTL_PRIVATE_DEF_CLS(MTLAccelerationStructureTriangleGeometryDescriptor);
|
|
79
|
+
_MTL_PRIVATE_DEF_CLS(MTLArchitecture);
|
|
80
|
+
_MTL_PRIVATE_DEF_CLS(MTLArgument);
|
|
81
|
+
_MTL_PRIVATE_DEF_CLS(MTLArgumentDescriptor);
|
|
82
|
+
_MTL_PRIVATE_DEF_CLS(MTLArrayType);
|
|
83
|
+
_MTL_PRIVATE_DEF_CLS(MTLAttribute);
|
|
84
|
+
_MTL_PRIVATE_DEF_CLS(MTLAttributeDescriptor);
|
|
85
|
+
_MTL_PRIVATE_DEF_CLS(MTLAttributeDescriptorArray);
|
|
86
|
+
_MTL_PRIVATE_DEF_CLS(MTLBinaryArchiveDescriptor);
|
|
87
|
+
_MTL_PRIVATE_DEF_CLS(MTLBlitPassDescriptor);
|
|
88
|
+
_MTL_PRIVATE_DEF_CLS(MTLBlitPassSampleBufferAttachmentDescriptor);
|
|
89
|
+
_MTL_PRIVATE_DEF_CLS(MTLBlitPassSampleBufferAttachmentDescriptorArray);
|
|
90
|
+
_MTL_PRIVATE_DEF_CLS(MTLBufferLayoutDescriptor);
|
|
91
|
+
_MTL_PRIVATE_DEF_CLS(MTLBufferLayoutDescriptorArray);
|
|
92
|
+
_MTL_PRIVATE_DEF_CLS(MTLCaptureDescriptor);
|
|
93
|
+
_MTL_PRIVATE_DEF_CLS(MTLCaptureManager);
|
|
94
|
+
_MTL_PRIVATE_DEF_CLS(MTLCommandBufferDescriptor);
|
|
95
|
+
_MTL_PRIVATE_DEF_CLS(MTLCommandQueueDescriptor);
|
|
96
|
+
_MTL_PRIVATE_DEF_CLS(MTLCompileOptions);
|
|
97
|
+
_MTL_PRIVATE_DEF_CLS(MTLComputePassDescriptor);
|
|
98
|
+
_MTL_PRIVATE_DEF_CLS(MTLComputePassSampleBufferAttachmentDescriptor);
|
|
99
|
+
_MTL_PRIVATE_DEF_CLS(MTLComputePassSampleBufferAttachmentDescriptorArray);
|
|
100
|
+
_MTL_PRIVATE_DEF_CLS(MTLComputePipelineDescriptor);
|
|
101
|
+
_MTL_PRIVATE_DEF_CLS(MTLComputePipelineReflection);
|
|
102
|
+
_MTL_PRIVATE_DEF_CLS(MTLCounterSampleBufferDescriptor);
|
|
103
|
+
_MTL_PRIVATE_DEF_CLS(MTLDepthStencilDescriptor);
|
|
104
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionConstant);
|
|
105
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionConstantValues);
|
|
106
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionDescriptor);
|
|
107
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionReflection);
|
|
108
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionStitchingAttributeAlwaysInline);
|
|
109
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionStitchingFunctionNode);
|
|
110
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionStitchingGraph);
|
|
111
|
+
_MTL_PRIVATE_DEF_CLS(MTLFunctionStitchingInputNode);
|
|
112
|
+
_MTL_PRIVATE_DEF_CLS(MTLHeapDescriptor);
|
|
113
|
+
_MTL_PRIVATE_DEF_CLS(MTLIOCommandQueueDescriptor);
|
|
114
|
+
_MTL_PRIVATE_DEF_CLS(MTLIndirectCommandBufferDescriptor);
|
|
115
|
+
_MTL_PRIVATE_DEF_CLS(MTLIndirectInstanceAccelerationStructureDescriptor);
|
|
116
|
+
_MTL_PRIVATE_DEF_CLS(MTLInstanceAccelerationStructureDescriptor);
|
|
117
|
+
_MTL_PRIVATE_DEF_CLS(MTLIntersectionFunctionDescriptor);
|
|
118
|
+
_MTL_PRIVATE_DEF_CLS(MTLIntersectionFunctionTableDescriptor);
|
|
119
|
+
_MTL_PRIVATE_DEF_CLS(MTLLinkedFunctions);
|
|
120
|
+
_MTL_PRIVATE_DEF_CLS(MTLLogStateDescriptor);
|
|
121
|
+
_MTL_PRIVATE_DEF_CLS(MTLLogicalToPhysicalColorAttachmentMap);
|
|
122
|
+
_MTL_PRIVATE_DEF_CLS(MTLMeshRenderPipelineDescriptor);
|
|
123
|
+
_MTL_PRIVATE_DEF_CLS(MTLMotionKeyframeData);
|
|
124
|
+
_MTL_PRIVATE_DEF_CLS(MTLPipelineBufferDescriptor);
|
|
125
|
+
_MTL_PRIVATE_DEF_CLS(MTLPipelineBufferDescriptorArray);
|
|
126
|
+
_MTL_PRIVATE_DEF_CLS(MTLPointerType);
|
|
127
|
+
_MTL_PRIVATE_DEF_CLS(MTLPrimitiveAccelerationStructureDescriptor);
|
|
128
|
+
_MTL_PRIVATE_DEF_CLS(MTLRasterizationRateLayerArray);
|
|
129
|
+
_MTL_PRIVATE_DEF_CLS(MTLRasterizationRateLayerDescriptor);
|
|
130
|
+
_MTL_PRIVATE_DEF_CLS(MTLRasterizationRateMapDescriptor);
|
|
131
|
+
_MTL_PRIVATE_DEF_CLS(MTLRasterizationRateSampleArray);
|
|
132
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassAttachmentDescriptor);
|
|
133
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassColorAttachmentDescriptor);
|
|
134
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassColorAttachmentDescriptorArray);
|
|
135
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassDepthAttachmentDescriptor);
|
|
136
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassDescriptor);
|
|
137
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassSampleBufferAttachmentDescriptor);
|
|
138
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassSampleBufferAttachmentDescriptorArray);
|
|
139
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPassStencilAttachmentDescriptor);
|
|
140
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPipelineColorAttachmentDescriptor);
|
|
141
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPipelineColorAttachmentDescriptorArray);
|
|
142
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPipelineDescriptor);
|
|
143
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPipelineFunctionsDescriptor);
|
|
144
|
+
_MTL_PRIVATE_DEF_CLS(MTLRenderPipelineReflection);
|
|
145
|
+
_MTL_PRIVATE_DEF_CLS(MTLResidencySetDescriptor);
|
|
146
|
+
_MTL_PRIVATE_DEF_CLS(MTLResourceStatePassDescriptor);
|
|
147
|
+
_MTL_PRIVATE_DEF_CLS(MTLResourceStatePassSampleBufferAttachmentDescriptor);
|
|
148
|
+
_MTL_PRIVATE_DEF_CLS(MTLResourceStatePassSampleBufferAttachmentDescriptorArray);
|
|
149
|
+
_MTL_PRIVATE_DEF_CLS(MTLResourceViewPoolDescriptor);
|
|
150
|
+
_MTL_PRIVATE_DEF_CLS(MTLSamplerDescriptor);
|
|
151
|
+
_MTL_PRIVATE_DEF_CLS(MTLSharedEventHandle);
|
|
152
|
+
_MTL_PRIVATE_DEF_CLS(MTLSharedEventListener);
|
|
153
|
+
_MTL_PRIVATE_DEF_CLS(MTLSharedTextureHandle);
|
|
154
|
+
_MTL_PRIVATE_DEF_CLS(MTLStageInputOutputDescriptor);
|
|
155
|
+
_MTL_PRIVATE_DEF_CLS(MTLStencilDescriptor);
|
|
156
|
+
_MTL_PRIVATE_DEF_CLS(MTLStitchedLibraryDescriptor);
|
|
157
|
+
_MTL_PRIVATE_DEF_CLS(MTLStructMember);
|
|
158
|
+
_MTL_PRIVATE_DEF_CLS(MTLStructType);
|
|
159
|
+
_MTL_PRIVATE_DEF_CLS(MTLTensorDescriptor);
|
|
160
|
+
_MTL_PRIVATE_DEF_CLS(MTLTensorExtents);
|
|
161
|
+
_MTL_PRIVATE_DEF_CLS(MTLTensorReferenceType);
|
|
162
|
+
_MTL_PRIVATE_DEF_CLS(MTLTextureDescriptor);
|
|
163
|
+
_MTL_PRIVATE_DEF_CLS(MTLTextureReferenceType);
|
|
164
|
+
_MTL_PRIVATE_DEF_CLS(MTLTextureViewDescriptor);
|
|
165
|
+
_MTL_PRIVATE_DEF_CLS(MTLTileRenderPipelineColorAttachmentDescriptor);
|
|
166
|
+
_MTL_PRIVATE_DEF_CLS(MTLTileRenderPipelineColorAttachmentDescriptorArray);
|
|
167
|
+
_MTL_PRIVATE_DEF_CLS(MTLTileRenderPipelineDescriptor);
|
|
168
|
+
_MTL_PRIVATE_DEF_CLS(MTLType);
|
|
169
|
+
_MTL_PRIVATE_DEF_CLS(MTLVertexAttribute);
|
|
170
|
+
_MTL_PRIVATE_DEF_CLS(MTLVertexAttributeDescriptor);
|
|
171
|
+
_MTL_PRIVATE_DEF_CLS(MTLVertexAttributeDescriptorArray);
|
|
172
|
+
_MTL_PRIVATE_DEF_CLS(MTLVertexBufferLayoutDescriptor);
|
|
173
|
+
_MTL_PRIVATE_DEF_CLS(MTLVertexBufferLayoutDescriptorArray);
|
|
174
|
+
_MTL_PRIVATE_DEF_CLS(MTLVertexDescriptor);
|
|
175
|
+
_MTL_PRIVATE_DEF_CLS(MTLVisibleFunctionTableDescriptor);
|
|
176
|
+
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
namespace MTL::Private::Protocol
|
|
180
|
+
{
|
|
181
|
+
|
|
182
|
+
_MTL_PRIVATE_DEF_PRO(MTL4Archive);
|
|
183
|
+
_MTL_PRIVATE_DEF_PRO(MTL4ArgumentTable);
|
|
184
|
+
_MTL_PRIVATE_DEF_PRO(MTL4BinaryFunction);
|
|
185
|
+
_MTL_PRIVATE_DEF_PRO(MTL4CommandAllocator);
|
|
186
|
+
_MTL_PRIVATE_DEF_PRO(MTL4CommandBuffer);
|
|
187
|
+
_MTL_PRIVATE_DEF_PRO(MTL4CommandEncoder);
|
|
188
|
+
_MTL_PRIVATE_DEF_PRO(MTL4CommandQueue);
|
|
189
|
+
_MTL_PRIVATE_DEF_PRO(MTL4CommitFeedback);
|
|
190
|
+
_MTL_PRIVATE_DEF_PRO(MTL4Compiler);
|
|
191
|
+
_MTL_PRIVATE_DEF_PRO(MTL4CompilerTask);
|
|
192
|
+
_MTL_PRIVATE_DEF_PRO(MTL4ComputeCommandEncoder);
|
|
193
|
+
_MTL_PRIVATE_DEF_PRO(MTL4CounterHeap);
|
|
194
|
+
_MTL_PRIVATE_DEF_PRO(MTL4MachineLearningCommandEncoder);
|
|
195
|
+
_MTL_PRIVATE_DEF_PRO(MTL4MachineLearningPipelineState);
|
|
196
|
+
_MTL_PRIVATE_DEF_PRO(MTL4PipelineDataSetSerializer);
|
|
197
|
+
_MTL_PRIVATE_DEF_PRO(MTL4RenderCommandEncoder);
|
|
198
|
+
_MTL_PRIVATE_DEF_PRO(MTLAccelerationStructure);
|
|
199
|
+
_MTL_PRIVATE_DEF_PRO(MTLAccelerationStructureCommandEncoder);
|
|
200
|
+
_MTL_PRIVATE_DEF_PRO(MTLAllocation);
|
|
201
|
+
_MTL_PRIVATE_DEF_PRO(MTLArgumentEncoder);
|
|
202
|
+
_MTL_PRIVATE_DEF_PRO(MTLBinaryArchive);
|
|
203
|
+
_MTL_PRIVATE_DEF_PRO(MTLBinding);
|
|
204
|
+
_MTL_PRIVATE_DEF_PRO(MTLBlitCommandEncoder);
|
|
205
|
+
_MTL_PRIVATE_DEF_PRO(MTLBuffer);
|
|
206
|
+
_MTL_PRIVATE_DEF_PRO(MTLBufferBinding);
|
|
207
|
+
_MTL_PRIVATE_DEF_PRO(MTLCommandBuffer);
|
|
208
|
+
_MTL_PRIVATE_DEF_PRO(MTLCommandBufferEncoderInfo);
|
|
209
|
+
_MTL_PRIVATE_DEF_PRO(MTLCommandEncoder);
|
|
210
|
+
_MTL_PRIVATE_DEF_PRO(MTLCommandQueue);
|
|
211
|
+
_MTL_PRIVATE_DEF_PRO(MTLComputeCommandEncoder);
|
|
212
|
+
_MTL_PRIVATE_DEF_PRO(MTLComputePipelineState);
|
|
213
|
+
_MTL_PRIVATE_DEF_PRO(MTLCounter);
|
|
214
|
+
_MTL_PRIVATE_DEF_PRO(MTLCounterSampleBuffer);
|
|
215
|
+
_MTL_PRIVATE_DEF_PRO(MTLCounterSet);
|
|
216
|
+
_MTL_PRIVATE_DEF_PRO(MTLDepthStencilState);
|
|
217
|
+
_MTL_PRIVATE_DEF_PRO(MTLDevice);
|
|
218
|
+
_MTL_PRIVATE_DEF_PRO(MTLDrawable);
|
|
219
|
+
_MTL_PRIVATE_DEF_PRO(MTLDynamicLibrary);
|
|
220
|
+
_MTL_PRIVATE_DEF_PRO(MTLEvent);
|
|
221
|
+
_MTL_PRIVATE_DEF_PRO(MTLFence);
|
|
222
|
+
_MTL_PRIVATE_DEF_PRO(MTLFunction);
|
|
223
|
+
_MTL_PRIVATE_DEF_PRO(MTLFunctionHandle);
|
|
224
|
+
_MTL_PRIVATE_DEF_PRO(MTLFunctionLog);
|
|
225
|
+
_MTL_PRIVATE_DEF_PRO(MTLFunctionLogDebugLocation);
|
|
226
|
+
_MTL_PRIVATE_DEF_PRO(MTLFunctionStitchingAttribute);
|
|
227
|
+
_MTL_PRIVATE_DEF_PRO(MTLFunctionStitchingNode);
|
|
228
|
+
_MTL_PRIVATE_DEF_PRO(MTLHeap);
|
|
229
|
+
_MTL_PRIVATE_DEF_PRO(MTLIOCommandBuffer);
|
|
230
|
+
_MTL_PRIVATE_DEF_PRO(MTLIOCommandQueue);
|
|
231
|
+
_MTL_PRIVATE_DEF_PRO(MTLIOFileHandle);
|
|
232
|
+
_MTL_PRIVATE_DEF_PRO(MTLIOScratchBuffer);
|
|
233
|
+
_MTL_PRIVATE_DEF_PRO(MTLIOScratchBufferAllocator);
|
|
234
|
+
_MTL_PRIVATE_DEF_PRO(MTLIndirectCommandBuffer);
|
|
235
|
+
_MTL_PRIVATE_DEF_PRO(MTLIndirectComputeCommand);
|
|
236
|
+
_MTL_PRIVATE_DEF_PRO(MTLIndirectRenderCommand);
|
|
237
|
+
_MTL_PRIVATE_DEF_PRO(MTLIntersectionFunctionTable);
|
|
238
|
+
_MTL_PRIVATE_DEF_PRO(MTLLibrary);
|
|
239
|
+
_MTL_PRIVATE_DEF_PRO(MTLLogContainer);
|
|
240
|
+
_MTL_PRIVATE_DEF_PRO(MTLLogState);
|
|
241
|
+
_MTL_PRIVATE_DEF_PRO(MTLObjectPayloadBinding);
|
|
242
|
+
_MTL_PRIVATE_DEF_PRO(MTLParallelRenderCommandEncoder);
|
|
243
|
+
_MTL_PRIVATE_DEF_PRO(MTLRasterizationRateMap);
|
|
244
|
+
_MTL_PRIVATE_DEF_PRO(MTLRenderCommandEncoder);
|
|
245
|
+
_MTL_PRIVATE_DEF_PRO(MTLRenderPipelineState);
|
|
246
|
+
_MTL_PRIVATE_DEF_PRO(MTLResidencySet);
|
|
247
|
+
_MTL_PRIVATE_DEF_PRO(MTLResource);
|
|
248
|
+
_MTL_PRIVATE_DEF_PRO(MTLResourceStateCommandEncoder);
|
|
249
|
+
_MTL_PRIVATE_DEF_PRO(MTLResourceViewPool);
|
|
250
|
+
_MTL_PRIVATE_DEF_PRO(MTLSamplerState);
|
|
251
|
+
_MTL_PRIVATE_DEF_PRO(MTLSharedEvent);
|
|
252
|
+
_MTL_PRIVATE_DEF_PRO(MTLTensor);
|
|
253
|
+
_MTL_PRIVATE_DEF_PRO(MTLTensorBinding);
|
|
254
|
+
_MTL_PRIVATE_DEF_PRO(MTLTexture);
|
|
255
|
+
_MTL_PRIVATE_DEF_PRO(MTLTextureBinding);
|
|
256
|
+
_MTL_PRIVATE_DEF_PRO(MTLTextureViewPool);
|
|
257
|
+
_MTL_PRIVATE_DEF_PRO(MTLThreadgroupBinding);
|
|
258
|
+
_MTL_PRIVATE_DEF_PRO(MTLVisibleFunctionTable);
|
|
259
|
+
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
namespace MTL::Private::Selector
|
|
263
|
+
{
|
|
264
|
+
|
|
265
|
+
_MTL_PRIVATE_DEF_SEL(GPUEndTime,
|
|
266
|
+
"GPUEndTime");
|
|
267
|
+
_MTL_PRIVATE_DEF_SEL(GPUStartTime,
|
|
268
|
+
"GPUStartTime");
|
|
269
|
+
_MTL_PRIVATE_DEF_SEL(URL,
|
|
270
|
+
"URL");
|
|
271
|
+
_MTL_PRIVATE_DEF_SEL(accelerationStructureCommandEncoder,
|
|
272
|
+
"accelerationStructureCommandEncoder");
|
|
273
|
+
_MTL_PRIVATE_DEF_SEL(accelerationStructureCommandEncoderWithDescriptor_,
|
|
274
|
+
"accelerationStructureCommandEncoderWithDescriptor:");
|
|
275
|
+
_MTL_PRIVATE_DEF_SEL(accelerationStructurePassDescriptor,
|
|
276
|
+
"accelerationStructurePassDescriptor");
|
|
277
|
+
_MTL_PRIVATE_DEF_SEL(accelerationStructureSizesWithDescriptor_,
|
|
278
|
+
"accelerationStructureSizesWithDescriptor:");
|
|
279
|
+
_MTL_PRIVATE_DEF_SEL(access,
|
|
280
|
+
"access");
|
|
281
|
+
_MTL_PRIVATE_DEF_SEL(addAllocation_,
|
|
282
|
+
"addAllocation:");
|
|
283
|
+
_MTL_PRIVATE_DEF_SEL(addAllocations_count_,
|
|
284
|
+
"addAllocations:count:");
|
|
285
|
+
_MTL_PRIVATE_DEF_SEL(addBarrier,
|
|
286
|
+
"addBarrier");
|
|
287
|
+
_MTL_PRIVATE_DEF_SEL(addCompletedHandler_,
|
|
288
|
+
"addCompletedHandler:");
|
|
289
|
+
_MTL_PRIVATE_DEF_SEL(addComputePipelineFunctionsWithDescriptor_error_,
|
|
290
|
+
"addComputePipelineFunctionsWithDescriptor:error:");
|
|
291
|
+
_MTL_PRIVATE_DEF_SEL(addDebugMarker_range_,
|
|
292
|
+
"addDebugMarker:range:");
|
|
293
|
+
_MTL_PRIVATE_DEF_SEL(addFeedbackHandler_,
|
|
294
|
+
"addFeedbackHandler:");
|
|
295
|
+
_MTL_PRIVATE_DEF_SEL(addFunctionWithDescriptor_library_error_,
|
|
296
|
+
"addFunctionWithDescriptor:library:error:");
|
|
297
|
+
_MTL_PRIVATE_DEF_SEL(addLibraryWithDescriptor_error_,
|
|
298
|
+
"addLibraryWithDescriptor:error:");
|
|
299
|
+
_MTL_PRIVATE_DEF_SEL(addLogHandler_,
|
|
300
|
+
"addLogHandler:");
|
|
301
|
+
_MTL_PRIVATE_DEF_SEL(addMeshRenderPipelineFunctionsWithDescriptor_error_,
|
|
302
|
+
"addMeshRenderPipelineFunctionsWithDescriptor:error:");
|
|
303
|
+
_MTL_PRIVATE_DEF_SEL(addPresentedHandler_,
|
|
304
|
+
"addPresentedHandler:");
|
|
305
|
+
_MTL_PRIVATE_DEF_SEL(addRenderPipelineFunctionsWithDescriptor_error_,
|
|
306
|
+
"addRenderPipelineFunctionsWithDescriptor:error:");
|
|
307
|
+
_MTL_PRIVATE_DEF_SEL(addResidencySet_,
|
|
308
|
+
"addResidencySet:");
|
|
309
|
+
_MTL_PRIVATE_DEF_SEL(addResidencySets_count_,
|
|
310
|
+
"addResidencySets:count:");
|
|
311
|
+
_MTL_PRIVATE_DEF_SEL(addScheduledHandler_,
|
|
312
|
+
"addScheduledHandler:");
|
|
313
|
+
_MTL_PRIVATE_DEF_SEL(addTileRenderPipelineFunctionsWithDescriptor_error_,
|
|
314
|
+
"addTileRenderPipelineFunctionsWithDescriptor:error:");
|
|
315
|
+
_MTL_PRIVATE_DEF_SEL(alignment,
|
|
316
|
+
"alignment");
|
|
317
|
+
_MTL_PRIVATE_DEF_SEL(allAllocations,
|
|
318
|
+
"allAllocations");
|
|
319
|
+
_MTL_PRIVATE_DEF_SEL(allocatedSize,
|
|
320
|
+
"allocatedSize");
|
|
321
|
+
_MTL_PRIVATE_DEF_SEL(allocationCount,
|
|
322
|
+
"allocationCount");
|
|
323
|
+
_MTL_PRIVATE_DEF_SEL(allowDuplicateIntersectionFunctionInvocation,
|
|
324
|
+
"allowDuplicateIntersectionFunctionInvocation");
|
|
325
|
+
_MTL_PRIVATE_DEF_SEL(allowGPUOptimizedContents,
|
|
326
|
+
"allowGPUOptimizedContents");
|
|
327
|
+
_MTL_PRIVATE_DEF_SEL(allowReferencingUndefinedSymbols,
|
|
328
|
+
"allowReferencingUndefinedSymbols");
|
|
329
|
+
_MTL_PRIVATE_DEF_SEL(alphaBlendOperation,
|
|
330
|
+
"alphaBlendOperation");
|
|
331
|
+
_MTL_PRIVATE_DEF_SEL(alphaToCoverageState,
|
|
332
|
+
"alphaToCoverageState");
|
|
333
|
+
_MTL_PRIVATE_DEF_SEL(alphaToOneState,
|
|
334
|
+
"alphaToOneState");
|
|
335
|
+
_MTL_PRIVATE_DEF_SEL(architecture,
|
|
336
|
+
"architecture");
|
|
337
|
+
_MTL_PRIVATE_DEF_SEL(areBarycentricCoordsSupported,
|
|
338
|
+
"areBarycentricCoordsSupported");
|
|
339
|
+
_MTL_PRIVATE_DEF_SEL(areProgrammableSamplePositionsSupported,
|
|
340
|
+
"areProgrammableSamplePositionsSupported");
|
|
341
|
+
_MTL_PRIVATE_DEF_SEL(areRasterOrderGroupsSupported,
|
|
342
|
+
"areRasterOrderGroupsSupported");
|
|
343
|
+
_MTL_PRIVATE_DEF_SEL(argumentBuffersSupport,
|
|
344
|
+
"argumentBuffersSupport");
|
|
345
|
+
_MTL_PRIVATE_DEF_SEL(argumentDescriptor,
|
|
346
|
+
"argumentDescriptor");
|
|
347
|
+
_MTL_PRIVATE_DEF_SEL(argumentIndex,
|
|
348
|
+
"argumentIndex");
|
|
349
|
+
_MTL_PRIVATE_DEF_SEL(argumentIndexStride,
|
|
350
|
+
"argumentIndexStride");
|
|
351
|
+
_MTL_PRIVATE_DEF_SEL(arguments,
|
|
352
|
+
"arguments");
|
|
353
|
+
_MTL_PRIVATE_DEF_SEL(arrayLength,
|
|
354
|
+
"arrayLength");
|
|
355
|
+
_MTL_PRIVATE_DEF_SEL(arrayType,
|
|
356
|
+
"arrayType");
|
|
357
|
+
_MTL_PRIVATE_DEF_SEL(attributeIndex,
|
|
358
|
+
"attributeIndex");
|
|
359
|
+
_MTL_PRIVATE_DEF_SEL(attributeType,
|
|
360
|
+
"attributeType");
|
|
361
|
+
_MTL_PRIVATE_DEF_SEL(attributes,
|
|
362
|
+
"attributes");
|
|
363
|
+
_MTL_PRIVATE_DEF_SEL(backFaceStencil,
|
|
364
|
+
"backFaceStencil");
|
|
365
|
+
_MTL_PRIVATE_DEF_SEL(barrierAfterEncoderStages_beforeEncoderStages_visibilityOptions_,
|
|
366
|
+
"barrierAfterEncoderStages:beforeEncoderStages:visibilityOptions:");
|
|
367
|
+
_MTL_PRIVATE_DEF_SEL(barrierAfterQueueStages_beforeStages_,
|
|
368
|
+
"barrierAfterQueueStages:beforeStages:");
|
|
369
|
+
_MTL_PRIVATE_DEF_SEL(barrierAfterQueueStages_beforeStages_visibilityOptions_,
|
|
370
|
+
"barrierAfterQueueStages:beforeStages:visibilityOptions:");
|
|
371
|
+
_MTL_PRIVATE_DEF_SEL(barrierAfterStages_beforeQueueStages_visibilityOptions_,
|
|
372
|
+
"barrierAfterStages:beforeQueueStages:visibilityOptions:");
|
|
373
|
+
_MTL_PRIVATE_DEF_SEL(baseResourceID,
|
|
374
|
+
"baseResourceID");
|
|
375
|
+
_MTL_PRIVATE_DEF_SEL(beginCommandBufferWithAllocator_,
|
|
376
|
+
"beginCommandBufferWithAllocator:");
|
|
377
|
+
_MTL_PRIVATE_DEF_SEL(beginCommandBufferWithAllocator_options_,
|
|
378
|
+
"beginCommandBufferWithAllocator:options:");
|
|
379
|
+
_MTL_PRIVATE_DEF_SEL(binaryArchives,
|
|
380
|
+
"binaryArchives");
|
|
381
|
+
_MTL_PRIVATE_DEF_SEL(binaryFunctions,
|
|
382
|
+
"binaryFunctions");
|
|
383
|
+
_MTL_PRIVATE_DEF_SEL(binaryLinkedFunctions,
|
|
384
|
+
"binaryLinkedFunctions");
|
|
385
|
+
_MTL_PRIVATE_DEF_SEL(bindings,
|
|
386
|
+
"bindings");
|
|
387
|
+
_MTL_PRIVATE_DEF_SEL(blendingState,
|
|
388
|
+
"blendingState");
|
|
389
|
+
_MTL_PRIVATE_DEF_SEL(blitCommandEncoder,
|
|
390
|
+
"blitCommandEncoder");
|
|
391
|
+
_MTL_PRIVATE_DEF_SEL(blitCommandEncoderWithDescriptor_,
|
|
392
|
+
"blitCommandEncoderWithDescriptor:");
|
|
393
|
+
_MTL_PRIVATE_DEF_SEL(blitPassDescriptor,
|
|
394
|
+
"blitPassDescriptor");
|
|
395
|
+
_MTL_PRIVATE_DEF_SEL(borderColor,
|
|
396
|
+
"borderColor");
|
|
397
|
+
_MTL_PRIVATE_DEF_SEL(boundingBoxBuffer,
|
|
398
|
+
"boundingBoxBuffer");
|
|
399
|
+
_MTL_PRIVATE_DEF_SEL(boundingBoxBufferOffset,
|
|
400
|
+
"boundingBoxBufferOffset");
|
|
401
|
+
_MTL_PRIVATE_DEF_SEL(boundingBoxBuffers,
|
|
402
|
+
"boundingBoxBuffers");
|
|
403
|
+
_MTL_PRIVATE_DEF_SEL(boundingBoxCount,
|
|
404
|
+
"boundingBoxCount");
|
|
405
|
+
_MTL_PRIVATE_DEF_SEL(boundingBoxStride,
|
|
406
|
+
"boundingBoxStride");
|
|
407
|
+
_MTL_PRIVATE_DEF_SEL(buffer,
|
|
408
|
+
"buffer");
|
|
409
|
+
_MTL_PRIVATE_DEF_SEL(bufferAlignment,
|
|
410
|
+
"bufferAlignment");
|
|
411
|
+
_MTL_PRIVATE_DEF_SEL(bufferBytesPerRow,
|
|
412
|
+
"bufferBytesPerRow");
|
|
413
|
+
_MTL_PRIVATE_DEF_SEL(bufferDataSize,
|
|
414
|
+
"bufferDataSize");
|
|
415
|
+
_MTL_PRIVATE_DEF_SEL(bufferDataType,
|
|
416
|
+
"bufferDataType");
|
|
417
|
+
_MTL_PRIVATE_DEF_SEL(bufferIndex,
|
|
418
|
+
"bufferIndex");
|
|
419
|
+
_MTL_PRIVATE_DEF_SEL(bufferOffset,
|
|
420
|
+
"bufferOffset");
|
|
421
|
+
_MTL_PRIVATE_DEF_SEL(bufferPointerType,
|
|
422
|
+
"bufferPointerType");
|
|
423
|
+
_MTL_PRIVATE_DEF_SEL(bufferSize,
|
|
424
|
+
"bufferSize");
|
|
425
|
+
_MTL_PRIVATE_DEF_SEL(bufferStructType,
|
|
426
|
+
"bufferStructType");
|
|
427
|
+
_MTL_PRIVATE_DEF_SEL(buffers,
|
|
428
|
+
"buffers");
|
|
429
|
+
_MTL_PRIVATE_DEF_SEL(buildAccelerationStructure_descriptor_scratchBuffer_,
|
|
430
|
+
"buildAccelerationStructure:descriptor:scratchBuffer:");
|
|
431
|
+
_MTL_PRIVATE_DEF_SEL(buildAccelerationStructure_descriptor_scratchBuffer_scratchBufferOffset_,
|
|
432
|
+
"buildAccelerationStructure:descriptor:scratchBuffer:scratchBufferOffset:");
|
|
433
|
+
_MTL_PRIVATE_DEF_SEL(captureObject,
|
|
434
|
+
"captureObject");
|
|
435
|
+
_MTL_PRIVATE_DEF_SEL(clearBarrier,
|
|
436
|
+
"clearBarrier");
|
|
437
|
+
_MTL_PRIVATE_DEF_SEL(clearColor,
|
|
438
|
+
"clearColor");
|
|
439
|
+
_MTL_PRIVATE_DEF_SEL(clearDepth,
|
|
440
|
+
"clearDepth");
|
|
441
|
+
_MTL_PRIVATE_DEF_SEL(clearStencil,
|
|
442
|
+
"clearStencil");
|
|
443
|
+
_MTL_PRIVATE_DEF_SEL(colorAttachmentMappingState,
|
|
444
|
+
"colorAttachmentMappingState");
|
|
445
|
+
_MTL_PRIVATE_DEF_SEL(colorAttachments,
|
|
446
|
+
"colorAttachments");
|
|
447
|
+
_MTL_PRIVATE_DEF_SEL(column,
|
|
448
|
+
"column");
|
|
449
|
+
_MTL_PRIVATE_DEF_SEL(commandBuffer,
|
|
450
|
+
"commandBuffer");
|
|
451
|
+
_MTL_PRIVATE_DEF_SEL(commandBufferWithDescriptor_,
|
|
452
|
+
"commandBufferWithDescriptor:");
|
|
453
|
+
_MTL_PRIVATE_DEF_SEL(commandBufferWithUnretainedReferences,
|
|
454
|
+
"commandBufferWithUnretainedReferences");
|
|
455
|
+
_MTL_PRIVATE_DEF_SEL(commandQueue,
|
|
456
|
+
"commandQueue");
|
|
457
|
+
_MTL_PRIVATE_DEF_SEL(commandTypes,
|
|
458
|
+
"commandTypes");
|
|
459
|
+
_MTL_PRIVATE_DEF_SEL(commit,
|
|
460
|
+
"commit");
|
|
461
|
+
_MTL_PRIVATE_DEF_SEL(commit_count_,
|
|
462
|
+
"commit:count:");
|
|
463
|
+
_MTL_PRIVATE_DEF_SEL(commit_count_options_,
|
|
464
|
+
"commit:count:options:");
|
|
465
|
+
_MTL_PRIVATE_DEF_SEL(compareFunction,
|
|
466
|
+
"compareFunction");
|
|
467
|
+
_MTL_PRIVATE_DEF_SEL(compileSymbolVisibility,
|
|
468
|
+
"compileSymbolVisibility");
|
|
469
|
+
_MTL_PRIVATE_DEF_SEL(compiler,
|
|
470
|
+
"compiler");
|
|
471
|
+
_MTL_PRIVATE_DEF_SEL(compressionType,
|
|
472
|
+
"compressionType");
|
|
473
|
+
_MTL_PRIVATE_DEF_SEL(computeCommandEncoder,
|
|
474
|
+
"computeCommandEncoder");
|
|
475
|
+
_MTL_PRIVATE_DEF_SEL(computeCommandEncoderWithDescriptor_,
|
|
476
|
+
"computeCommandEncoderWithDescriptor:");
|
|
477
|
+
_MTL_PRIVATE_DEF_SEL(computeCommandEncoderWithDispatchType_,
|
|
478
|
+
"computeCommandEncoderWithDispatchType:");
|
|
479
|
+
_MTL_PRIVATE_DEF_SEL(computeFunction,
|
|
480
|
+
"computeFunction");
|
|
481
|
+
_MTL_PRIVATE_DEF_SEL(computeFunctionDescriptor,
|
|
482
|
+
"computeFunctionDescriptor");
|
|
483
|
+
_MTL_PRIVATE_DEF_SEL(computePassDescriptor,
|
|
484
|
+
"computePassDescriptor");
|
|
485
|
+
_MTL_PRIVATE_DEF_SEL(concurrentDispatchThreadgroups_threadsPerThreadgroup_,
|
|
486
|
+
"concurrentDispatchThreadgroups:threadsPerThreadgroup:");
|
|
487
|
+
_MTL_PRIVATE_DEF_SEL(concurrentDispatchThreads_threadsPerThreadgroup_,
|
|
488
|
+
"concurrentDispatchThreads:threadsPerThreadgroup:");
|
|
489
|
+
_MTL_PRIVATE_DEF_SEL(configuration,
|
|
490
|
+
"configuration");
|
|
491
|
+
_MTL_PRIVATE_DEF_SEL(constantBlockAlignment,
|
|
492
|
+
"constantBlockAlignment");
|
|
493
|
+
_MTL_PRIVATE_DEF_SEL(constantDataAtIndex_,
|
|
494
|
+
"constantDataAtIndex:");
|
|
495
|
+
_MTL_PRIVATE_DEF_SEL(constantValues,
|
|
496
|
+
"constantValues");
|
|
497
|
+
_MTL_PRIVATE_DEF_SEL(containsAllocation_,
|
|
498
|
+
"containsAllocation:");
|
|
499
|
+
_MTL_PRIVATE_DEF_SEL(contents,
|
|
500
|
+
"contents");
|
|
501
|
+
_MTL_PRIVATE_DEF_SEL(controlDependencies,
|
|
502
|
+
"controlDependencies");
|
|
503
|
+
_MTL_PRIVATE_DEF_SEL(controlPointBuffer,
|
|
504
|
+
"controlPointBuffer");
|
|
505
|
+
_MTL_PRIVATE_DEF_SEL(controlPointBufferOffset,
|
|
506
|
+
"controlPointBufferOffset");
|
|
507
|
+
_MTL_PRIVATE_DEF_SEL(controlPointBuffers,
|
|
508
|
+
"controlPointBuffers");
|
|
509
|
+
_MTL_PRIVATE_DEF_SEL(controlPointCount,
|
|
510
|
+
"controlPointCount");
|
|
511
|
+
_MTL_PRIVATE_DEF_SEL(controlPointFormat,
|
|
512
|
+
"controlPointFormat");
|
|
513
|
+
_MTL_PRIVATE_DEF_SEL(controlPointStride,
|
|
514
|
+
"controlPointStride");
|
|
515
|
+
_MTL_PRIVATE_DEF_SEL(convertSparsePixelRegions_toTileRegions_withTileSize_alignmentMode_numRegions_,
|
|
516
|
+
"convertSparsePixelRegions:toTileRegions:withTileSize:alignmentMode:numRegions:");
|
|
517
|
+
_MTL_PRIVATE_DEF_SEL(convertSparseTileRegions_toPixelRegions_withTileSize_numRegions_,
|
|
518
|
+
"convertSparseTileRegions:toPixelRegions:withTileSize:numRegions:");
|
|
519
|
+
_MTL_PRIVATE_DEF_SEL(copyAccelerationStructure_toAccelerationStructure_,
|
|
520
|
+
"copyAccelerationStructure:toAccelerationStructure:");
|
|
521
|
+
_MTL_PRIVATE_DEF_SEL(copyAndCompactAccelerationStructure_toAccelerationStructure_,
|
|
522
|
+
"copyAndCompactAccelerationStructure:toAccelerationStructure:");
|
|
523
|
+
_MTL_PRIVATE_DEF_SEL(copyBufferMappingsFromBuffer_toBuffer_operations_count_,
|
|
524
|
+
"copyBufferMappingsFromBuffer:toBuffer:operations:count:");
|
|
525
|
+
_MTL_PRIVATE_DEF_SEL(copyFromBuffer_sourceOffset_sourceBytesPerRow_sourceBytesPerImage_sourceSize_toTexture_destinationSlice_destinationLevel_destinationOrigin_,
|
|
526
|
+
"copyFromBuffer:sourceOffset:sourceBytesPerRow:sourceBytesPerImage:sourceSize:toTexture:destinationSlice:destinationLevel:destinationOrigin:");
|
|
527
|
+
_MTL_PRIVATE_DEF_SEL(copyFromBuffer_sourceOffset_sourceBytesPerRow_sourceBytesPerImage_sourceSize_toTexture_destinationSlice_destinationLevel_destinationOrigin_options_,
|
|
528
|
+
"copyFromBuffer:sourceOffset:sourceBytesPerRow:sourceBytesPerImage:sourceSize:toTexture:destinationSlice:destinationLevel:destinationOrigin:options:");
|
|
529
|
+
_MTL_PRIVATE_DEF_SEL(copyFromBuffer_sourceOffset_toBuffer_destinationOffset_size_,
|
|
530
|
+
"copyFromBuffer:sourceOffset:toBuffer:destinationOffset:size:");
|
|
531
|
+
_MTL_PRIVATE_DEF_SEL(copyFromTensor_sourceOrigin_sourceDimensions_toTensor_destinationOrigin_destinationDimensions_,
|
|
532
|
+
"copyFromTensor:sourceOrigin:sourceDimensions:toTensor:destinationOrigin:destinationDimensions:");
|
|
533
|
+
_MTL_PRIVATE_DEF_SEL(copyFromTexture_sourceSlice_sourceLevel_sourceOrigin_sourceSize_toBuffer_destinationOffset_destinationBytesPerRow_destinationBytesPerImage_,
|
|
534
|
+
"copyFromTexture:sourceSlice:sourceLevel:sourceOrigin:sourceSize:toBuffer:destinationOffset:destinationBytesPerRow:destinationBytesPerImage:");
|
|
535
|
+
_MTL_PRIVATE_DEF_SEL(copyFromTexture_sourceSlice_sourceLevel_sourceOrigin_sourceSize_toBuffer_destinationOffset_destinationBytesPerRow_destinationBytesPerImage_options_,
|
|
536
|
+
"copyFromTexture:sourceSlice:sourceLevel:sourceOrigin:sourceSize:toBuffer:destinationOffset:destinationBytesPerRow:destinationBytesPerImage:options:");
|
|
537
|
+
_MTL_PRIVATE_DEF_SEL(copyFromTexture_sourceSlice_sourceLevel_sourceOrigin_sourceSize_toTexture_destinationSlice_destinationLevel_destinationOrigin_,
|
|
538
|
+
"copyFromTexture:sourceSlice:sourceLevel:sourceOrigin:sourceSize:toTexture:destinationSlice:destinationLevel:destinationOrigin:");
|
|
539
|
+
_MTL_PRIVATE_DEF_SEL(copyFromTexture_sourceSlice_sourceLevel_toTexture_destinationSlice_destinationLevel_sliceCount_levelCount_,
|
|
540
|
+
"copyFromTexture:sourceSlice:sourceLevel:toTexture:destinationSlice:destinationLevel:sliceCount:levelCount:");
|
|
541
|
+
_MTL_PRIVATE_DEF_SEL(copyFromTexture_toTexture_,
|
|
542
|
+
"copyFromTexture:toTexture:");
|
|
543
|
+
_MTL_PRIVATE_DEF_SEL(copyIndirectCommandBuffer_sourceRange_destination_destinationIndex_,
|
|
544
|
+
"copyIndirectCommandBuffer:sourceRange:destination:destinationIndex:");
|
|
545
|
+
_MTL_PRIVATE_DEF_SEL(copyParameterDataToBuffer_offset_,
|
|
546
|
+
"copyParameterDataToBuffer:offset:");
|
|
547
|
+
_MTL_PRIVATE_DEF_SEL(copyResourceViewsFromPool_sourceRange_destinationIndex_,
|
|
548
|
+
"copyResourceViewsFromPool:sourceRange:destinationIndex:");
|
|
549
|
+
_MTL_PRIVATE_DEF_SEL(copyStatusToBuffer_offset_,
|
|
550
|
+
"copyStatusToBuffer:offset:");
|
|
551
|
+
_MTL_PRIVATE_DEF_SEL(copyTextureMappingsFromTexture_toTexture_operations_count_,
|
|
552
|
+
"copyTextureMappingsFromTexture:toTexture:operations:count:");
|
|
553
|
+
_MTL_PRIVATE_DEF_SEL(count,
|
|
554
|
+
"count");
|
|
555
|
+
_MTL_PRIVATE_DEF_SEL(counterSet,
|
|
556
|
+
"counterSet");
|
|
557
|
+
_MTL_PRIVATE_DEF_SEL(counterSets,
|
|
558
|
+
"counterSets");
|
|
559
|
+
_MTL_PRIVATE_DEF_SEL(counters,
|
|
560
|
+
"counters");
|
|
561
|
+
_MTL_PRIVATE_DEF_SEL(cpuCacheMode,
|
|
562
|
+
"cpuCacheMode");
|
|
563
|
+
_MTL_PRIVATE_DEF_SEL(currentAllocatedSize,
|
|
564
|
+
"currentAllocatedSize");
|
|
565
|
+
_MTL_PRIVATE_DEF_SEL(curveBasis,
|
|
566
|
+
"curveBasis");
|
|
567
|
+
_MTL_PRIVATE_DEF_SEL(curveEndCaps,
|
|
568
|
+
"curveEndCaps");
|
|
569
|
+
_MTL_PRIVATE_DEF_SEL(curveType,
|
|
570
|
+
"curveType");
|
|
571
|
+
_MTL_PRIVATE_DEF_SEL(data,
|
|
572
|
+
"data");
|
|
573
|
+
_MTL_PRIVATE_DEF_SEL(dataSize,
|
|
574
|
+
"dataSize");
|
|
575
|
+
_MTL_PRIVATE_DEF_SEL(dataType,
|
|
576
|
+
"dataType");
|
|
577
|
+
_MTL_PRIVATE_DEF_SEL(dealloc,
|
|
578
|
+
"dealloc");
|
|
579
|
+
_MTL_PRIVATE_DEF_SEL(debugLocation,
|
|
580
|
+
"debugLocation");
|
|
581
|
+
_MTL_PRIVATE_DEF_SEL(debugSignposts,
|
|
582
|
+
"debugSignposts");
|
|
583
|
+
_MTL_PRIVATE_DEF_SEL(defaultCaptureScope,
|
|
584
|
+
"defaultCaptureScope");
|
|
585
|
+
_MTL_PRIVATE_DEF_SEL(defaultRasterSampleCount,
|
|
586
|
+
"defaultRasterSampleCount");
|
|
587
|
+
_MTL_PRIVATE_DEF_SEL(depth,
|
|
588
|
+
"depth");
|
|
589
|
+
_MTL_PRIVATE_DEF_SEL(depthAttachment,
|
|
590
|
+
"depthAttachment");
|
|
591
|
+
_MTL_PRIVATE_DEF_SEL(depthAttachmentPixelFormat,
|
|
592
|
+
"depthAttachmentPixelFormat");
|
|
593
|
+
_MTL_PRIVATE_DEF_SEL(depthCompareFunction,
|
|
594
|
+
"depthCompareFunction");
|
|
595
|
+
_MTL_PRIVATE_DEF_SEL(depthFailureOperation,
|
|
596
|
+
"depthFailureOperation");
|
|
597
|
+
_MTL_PRIVATE_DEF_SEL(depthPlane,
|
|
598
|
+
"depthPlane");
|
|
599
|
+
_MTL_PRIVATE_DEF_SEL(depthResolveFilter,
|
|
600
|
+
"depthResolveFilter");
|
|
601
|
+
_MTL_PRIVATE_DEF_SEL(depthStencilPassOperation,
|
|
602
|
+
"depthStencilPassOperation");
|
|
603
|
+
_MTL_PRIVATE_DEF_SEL(descriptor,
|
|
604
|
+
"descriptor");
|
|
605
|
+
_MTL_PRIVATE_DEF_SEL(destination,
|
|
606
|
+
"destination");
|
|
607
|
+
_MTL_PRIVATE_DEF_SEL(destinationAlphaBlendFactor,
|
|
608
|
+
"destinationAlphaBlendFactor");
|
|
609
|
+
_MTL_PRIVATE_DEF_SEL(destinationRGBBlendFactor,
|
|
610
|
+
"destinationRGBBlendFactor");
|
|
611
|
+
_MTL_PRIVATE_DEF_SEL(device,
|
|
612
|
+
"device");
|
|
613
|
+
_MTL_PRIVATE_DEF_SEL(didModifyRange_,
|
|
614
|
+
"didModifyRange:");
|
|
615
|
+
_MTL_PRIVATE_DEF_SEL(dimensions,
|
|
616
|
+
"dimensions");
|
|
617
|
+
_MTL_PRIVATE_DEF_SEL(dispatchNetworkWithIntermediatesHeap_,
|
|
618
|
+
"dispatchNetworkWithIntermediatesHeap:");
|
|
619
|
+
_MTL_PRIVATE_DEF_SEL(dispatchQueue,
|
|
620
|
+
"dispatchQueue");
|
|
621
|
+
_MTL_PRIVATE_DEF_SEL(dispatchThreadgroups_threadsPerThreadgroup_,
|
|
622
|
+
"dispatchThreadgroups:threadsPerThreadgroup:");
|
|
623
|
+
_MTL_PRIVATE_DEF_SEL(dispatchThreadgroupsWithIndirectBuffer_indirectBufferOffset_threadsPerThreadgroup_,
|
|
624
|
+
"dispatchThreadgroupsWithIndirectBuffer:indirectBufferOffset:threadsPerThreadgroup:");
|
|
625
|
+
_MTL_PRIVATE_DEF_SEL(dispatchThreadgroupsWithIndirectBuffer_threadsPerThreadgroup_,
|
|
626
|
+
"dispatchThreadgroupsWithIndirectBuffer:threadsPerThreadgroup:");
|
|
627
|
+
_MTL_PRIVATE_DEF_SEL(dispatchThreads_threadsPerThreadgroup_,
|
|
628
|
+
"dispatchThreads:threadsPerThreadgroup:");
|
|
629
|
+
_MTL_PRIVATE_DEF_SEL(dispatchThreadsPerTile_,
|
|
630
|
+
"dispatchThreadsPerTile:");
|
|
631
|
+
_MTL_PRIVATE_DEF_SEL(dispatchThreadsWithIndirectBuffer_,
|
|
632
|
+
"dispatchThreadsWithIndirectBuffer:");
|
|
633
|
+
_MTL_PRIVATE_DEF_SEL(dispatchType,
|
|
634
|
+
"dispatchType");
|
|
635
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPatches_patchIndexBuffer_patchIndexBufferOffset_controlPointIndexBuffer_controlPointIndexBufferOffset_indirectBuffer_indirectBufferOffset_,
|
|
636
|
+
"drawIndexedPatches:patchIndexBuffer:patchIndexBufferOffset:controlPointIndexBuffer:controlPointIndexBufferOffset:indirectBuffer:indirectBufferOffset:");
|
|
637
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPatches_patchStart_patchCount_patchIndexBuffer_patchIndexBufferOffset_controlPointIndexBuffer_controlPointIndexBufferOffset_instanceCount_baseInstance_,
|
|
638
|
+
"drawIndexedPatches:patchStart:patchCount:patchIndexBuffer:patchIndexBufferOffset:controlPointIndexBuffer:controlPointIndexBufferOffset:instanceCount:baseInstance:");
|
|
639
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPatches_patchStart_patchCount_patchIndexBuffer_patchIndexBufferOffset_controlPointIndexBuffer_controlPointIndexBufferOffset_instanceCount_baseInstance_tessellationFactorBuffer_tessellationFactorBufferOffset_tessellationFactorBufferInstanceStride_,
|
|
640
|
+
"drawIndexedPatches:patchStart:patchCount:patchIndexBuffer:patchIndexBufferOffset:controlPointIndexBuffer:controlPointIndexBufferOffset:instanceCount:baseInstance:tessellationFactorBuffer:tessellationFactorBufferOffset:tessellationFactorBufferInstanceStride:");
|
|
641
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexCount_indexType_indexBuffer_indexBufferLength_,
|
|
642
|
+
"drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferLength:");
|
|
643
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexCount_indexType_indexBuffer_indexBufferLength_instanceCount_,
|
|
644
|
+
"drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferLength:instanceCount:");
|
|
645
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexCount_indexType_indexBuffer_indexBufferLength_instanceCount_baseVertex_baseInstance_,
|
|
646
|
+
"drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferLength:instanceCount:baseVertex:baseInstance:");
|
|
647
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexCount_indexType_indexBuffer_indexBufferOffset_,
|
|
648
|
+
"drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferOffset:");
|
|
649
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexCount_indexType_indexBuffer_indexBufferOffset_instanceCount_,
|
|
650
|
+
"drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferOffset:instanceCount:");
|
|
651
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexCount_indexType_indexBuffer_indexBufferOffset_instanceCount_baseVertex_baseInstance_,
|
|
652
|
+
"drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferOffset:instanceCount:baseVertex:baseInstance:");
|
|
653
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexType_indexBuffer_indexBufferLength_indirectBuffer_,
|
|
654
|
+
"drawIndexedPrimitives:indexType:indexBuffer:indexBufferLength:indirectBuffer:");
|
|
655
|
+
_MTL_PRIVATE_DEF_SEL(drawIndexedPrimitives_indexType_indexBuffer_indexBufferOffset_indirectBuffer_indirectBufferOffset_,
|
|
656
|
+
"drawIndexedPrimitives:indexType:indexBuffer:indexBufferOffset:indirectBuffer:indirectBufferOffset:");
|
|
657
|
+
_MTL_PRIVATE_DEF_SEL(drawMeshThreadgroups_threadsPerObjectThreadgroup_threadsPerMeshThreadgroup_,
|
|
658
|
+
"drawMeshThreadgroups:threadsPerObjectThreadgroup:threadsPerMeshThreadgroup:");
|
|
659
|
+
_MTL_PRIVATE_DEF_SEL(drawMeshThreadgroupsWithIndirectBuffer_indirectBufferOffset_threadsPerObjectThreadgroup_threadsPerMeshThreadgroup_,
|
|
660
|
+
"drawMeshThreadgroupsWithIndirectBuffer:indirectBufferOffset:threadsPerObjectThreadgroup:threadsPerMeshThreadgroup:");
|
|
661
|
+
_MTL_PRIVATE_DEF_SEL(drawMeshThreadgroupsWithIndirectBuffer_threadsPerObjectThreadgroup_threadsPerMeshThreadgroup_,
|
|
662
|
+
"drawMeshThreadgroupsWithIndirectBuffer:threadsPerObjectThreadgroup:threadsPerMeshThreadgroup:");
|
|
663
|
+
_MTL_PRIVATE_DEF_SEL(drawMeshThreads_threadsPerObjectThreadgroup_threadsPerMeshThreadgroup_,
|
|
664
|
+
"drawMeshThreads:threadsPerObjectThreadgroup:threadsPerMeshThreadgroup:");
|
|
665
|
+
_MTL_PRIVATE_DEF_SEL(drawPatches_patchIndexBuffer_patchIndexBufferOffset_indirectBuffer_indirectBufferOffset_,
|
|
666
|
+
"drawPatches:patchIndexBuffer:patchIndexBufferOffset:indirectBuffer:indirectBufferOffset:");
|
|
667
|
+
_MTL_PRIVATE_DEF_SEL(drawPatches_patchStart_patchCount_patchIndexBuffer_patchIndexBufferOffset_instanceCount_baseInstance_,
|
|
668
|
+
"drawPatches:patchStart:patchCount:patchIndexBuffer:patchIndexBufferOffset:instanceCount:baseInstance:");
|
|
669
|
+
_MTL_PRIVATE_DEF_SEL(drawPatches_patchStart_patchCount_patchIndexBuffer_patchIndexBufferOffset_instanceCount_baseInstance_tessellationFactorBuffer_tessellationFactorBufferOffset_tessellationFactorBufferInstanceStride_,
|
|
670
|
+
"drawPatches:patchStart:patchCount:patchIndexBuffer:patchIndexBufferOffset:instanceCount:baseInstance:tessellationFactorBuffer:tessellationFactorBufferOffset:tessellationFactorBufferInstanceStride:");
|
|
671
|
+
_MTL_PRIVATE_DEF_SEL(drawPrimitives_indirectBuffer_,
|
|
672
|
+
"drawPrimitives:indirectBuffer:");
|
|
673
|
+
_MTL_PRIVATE_DEF_SEL(drawPrimitives_indirectBuffer_indirectBufferOffset_,
|
|
674
|
+
"drawPrimitives:indirectBuffer:indirectBufferOffset:");
|
|
675
|
+
_MTL_PRIVATE_DEF_SEL(drawPrimitives_vertexStart_vertexCount_,
|
|
676
|
+
"drawPrimitives:vertexStart:vertexCount:");
|
|
677
|
+
_MTL_PRIVATE_DEF_SEL(drawPrimitives_vertexStart_vertexCount_instanceCount_,
|
|
678
|
+
"drawPrimitives:vertexStart:vertexCount:instanceCount:");
|
|
679
|
+
_MTL_PRIVATE_DEF_SEL(drawPrimitives_vertexStart_vertexCount_instanceCount_baseInstance_,
|
|
680
|
+
"drawPrimitives:vertexStart:vertexCount:instanceCount:baseInstance:");
|
|
681
|
+
_MTL_PRIVATE_DEF_SEL(drawableID,
|
|
682
|
+
"drawableID");
|
|
683
|
+
_MTL_PRIVATE_DEF_SEL(elementArrayType,
|
|
684
|
+
"elementArrayType");
|
|
685
|
+
_MTL_PRIVATE_DEF_SEL(elementIsArgumentBuffer,
|
|
686
|
+
"elementIsArgumentBuffer");
|
|
687
|
+
_MTL_PRIVATE_DEF_SEL(elementPointerType,
|
|
688
|
+
"elementPointerType");
|
|
689
|
+
_MTL_PRIVATE_DEF_SEL(elementStructType,
|
|
690
|
+
"elementStructType");
|
|
691
|
+
_MTL_PRIVATE_DEF_SEL(elementTensorReferenceType,
|
|
692
|
+
"elementTensorReferenceType");
|
|
693
|
+
_MTL_PRIVATE_DEF_SEL(elementTextureReferenceType,
|
|
694
|
+
"elementTextureReferenceType");
|
|
695
|
+
_MTL_PRIVATE_DEF_SEL(elementType,
|
|
696
|
+
"elementType");
|
|
697
|
+
_MTL_PRIVATE_DEF_SEL(enableLogging,
|
|
698
|
+
"enableLogging");
|
|
699
|
+
_MTL_PRIVATE_DEF_SEL(encodeSignalEvent_value_,
|
|
700
|
+
"encodeSignalEvent:value:");
|
|
701
|
+
_MTL_PRIVATE_DEF_SEL(encodeWaitForEvent_value_,
|
|
702
|
+
"encodeWaitForEvent:value:");
|
|
703
|
+
_MTL_PRIVATE_DEF_SEL(encodedLength,
|
|
704
|
+
"encodedLength");
|
|
705
|
+
_MTL_PRIVATE_DEF_SEL(encoderLabel,
|
|
706
|
+
"encoderLabel");
|
|
707
|
+
_MTL_PRIVATE_DEF_SEL(endCommandBuffer,
|
|
708
|
+
"endCommandBuffer");
|
|
709
|
+
_MTL_PRIVATE_DEF_SEL(endEncoding,
|
|
710
|
+
"endEncoding");
|
|
711
|
+
_MTL_PRIVATE_DEF_SEL(endOfEncoderSampleIndex,
|
|
712
|
+
"endOfEncoderSampleIndex");
|
|
713
|
+
_MTL_PRIVATE_DEF_SEL(endOfFragmentSampleIndex,
|
|
714
|
+
"endOfFragmentSampleIndex");
|
|
715
|
+
_MTL_PRIVATE_DEF_SEL(endOfVertexSampleIndex,
|
|
716
|
+
"endOfVertexSampleIndex");
|
|
717
|
+
_MTL_PRIVATE_DEF_SEL(endResidency,
|
|
718
|
+
"endResidency");
|
|
719
|
+
_MTL_PRIVATE_DEF_SEL(enqueue,
|
|
720
|
+
"enqueue");
|
|
721
|
+
_MTL_PRIVATE_DEF_SEL(enqueueBarrier,
|
|
722
|
+
"enqueueBarrier");
|
|
723
|
+
_MTL_PRIVATE_DEF_SEL(error,
|
|
724
|
+
"error");
|
|
725
|
+
_MTL_PRIVATE_DEF_SEL(errorOptions,
|
|
726
|
+
"errorOptions");
|
|
727
|
+
_MTL_PRIVATE_DEF_SEL(errorState,
|
|
728
|
+
"errorState");
|
|
729
|
+
_MTL_PRIVATE_DEF_SEL(executeCommandsInBuffer_indirectBuffer_,
|
|
730
|
+
"executeCommandsInBuffer:indirectBuffer:");
|
|
731
|
+
_MTL_PRIVATE_DEF_SEL(executeCommandsInBuffer_indirectBuffer_indirectBufferOffset_,
|
|
732
|
+
"executeCommandsInBuffer:indirectBuffer:indirectBufferOffset:");
|
|
733
|
+
_MTL_PRIVATE_DEF_SEL(executeCommandsInBuffer_withRange_,
|
|
734
|
+
"executeCommandsInBuffer:withRange:");
|
|
735
|
+
_MTL_PRIVATE_DEF_SEL(extentAtDimensionIndex_,
|
|
736
|
+
"extentAtDimensionIndex:");
|
|
737
|
+
_MTL_PRIVATE_DEF_SEL(fastMathEnabled,
|
|
738
|
+
"fastMathEnabled");
|
|
739
|
+
_MTL_PRIVATE_DEF_SEL(feedbackQueue,
|
|
740
|
+
"feedbackQueue");
|
|
741
|
+
_MTL_PRIVATE_DEF_SEL(fillBuffer_range_value_,
|
|
742
|
+
"fillBuffer:range:value:");
|
|
743
|
+
_MTL_PRIVATE_DEF_SEL(firstMipmapInTail,
|
|
744
|
+
"firstMipmapInTail");
|
|
745
|
+
_MTL_PRIVATE_DEF_SEL(format,
|
|
746
|
+
"format");
|
|
747
|
+
_MTL_PRIVATE_DEF_SEL(fragmentAdditionalBinaryFunctions,
|
|
748
|
+
"fragmentAdditionalBinaryFunctions");
|
|
749
|
+
_MTL_PRIVATE_DEF_SEL(fragmentArguments,
|
|
750
|
+
"fragmentArguments");
|
|
751
|
+
_MTL_PRIVATE_DEF_SEL(fragmentBindings,
|
|
752
|
+
"fragmentBindings");
|
|
753
|
+
_MTL_PRIVATE_DEF_SEL(fragmentBuffers,
|
|
754
|
+
"fragmentBuffers");
|
|
755
|
+
_MTL_PRIVATE_DEF_SEL(fragmentFunction,
|
|
756
|
+
"fragmentFunction");
|
|
757
|
+
_MTL_PRIVATE_DEF_SEL(fragmentFunctionDescriptor,
|
|
758
|
+
"fragmentFunctionDescriptor");
|
|
759
|
+
_MTL_PRIVATE_DEF_SEL(fragmentLinkedFunctions,
|
|
760
|
+
"fragmentLinkedFunctions");
|
|
761
|
+
_MTL_PRIVATE_DEF_SEL(fragmentLinkingDescriptor,
|
|
762
|
+
"fragmentLinkingDescriptor");
|
|
763
|
+
_MTL_PRIVATE_DEF_SEL(fragmentPreloadedLibraries,
|
|
764
|
+
"fragmentPreloadedLibraries");
|
|
765
|
+
_MTL_PRIVATE_DEF_SEL(fragmentStaticLinkingDescriptor,
|
|
766
|
+
"fragmentStaticLinkingDescriptor");
|
|
767
|
+
_MTL_PRIVATE_DEF_SEL(frontFaceStencil,
|
|
768
|
+
"frontFaceStencil");
|
|
769
|
+
_MTL_PRIVATE_DEF_SEL(function,
|
|
770
|
+
"function");
|
|
771
|
+
_MTL_PRIVATE_DEF_SEL(functionConstantsDictionary,
|
|
772
|
+
"functionConstantsDictionary");
|
|
773
|
+
_MTL_PRIVATE_DEF_SEL(functionCount,
|
|
774
|
+
"functionCount");
|
|
775
|
+
_MTL_PRIVATE_DEF_SEL(functionDescriptor,
|
|
776
|
+
"functionDescriptor");
|
|
777
|
+
_MTL_PRIVATE_DEF_SEL(functionDescriptors,
|
|
778
|
+
"functionDescriptors");
|
|
779
|
+
_MTL_PRIVATE_DEF_SEL(functionGraph,
|
|
780
|
+
"functionGraph");
|
|
781
|
+
_MTL_PRIVATE_DEF_SEL(functionGraphs,
|
|
782
|
+
"functionGraphs");
|
|
783
|
+
_MTL_PRIVATE_DEF_SEL(functionHandleWithBinaryFunction_,
|
|
784
|
+
"functionHandleWithBinaryFunction:");
|
|
785
|
+
_MTL_PRIVATE_DEF_SEL(functionHandleWithBinaryFunction_stage_,
|
|
786
|
+
"functionHandleWithBinaryFunction:stage:");
|
|
787
|
+
_MTL_PRIVATE_DEF_SEL(functionHandleWithFunction_,
|
|
788
|
+
"functionHandleWithFunction:");
|
|
789
|
+
_MTL_PRIVATE_DEF_SEL(functionHandleWithFunction_stage_,
|
|
790
|
+
"functionHandleWithFunction:stage:");
|
|
791
|
+
_MTL_PRIVATE_DEF_SEL(functionHandleWithName_,
|
|
792
|
+
"functionHandleWithName:");
|
|
793
|
+
_MTL_PRIVATE_DEF_SEL(functionHandleWithName_stage_,
|
|
794
|
+
"functionHandleWithName:stage:");
|
|
795
|
+
_MTL_PRIVATE_DEF_SEL(functionName,
|
|
796
|
+
"functionName");
|
|
797
|
+
_MTL_PRIVATE_DEF_SEL(functionNames,
|
|
798
|
+
"functionNames");
|
|
799
|
+
_MTL_PRIVATE_DEF_SEL(functionType,
|
|
800
|
+
"functionType");
|
|
801
|
+
_MTL_PRIVATE_DEF_SEL(functions,
|
|
802
|
+
"functions");
|
|
803
|
+
_MTL_PRIVATE_DEF_SEL(generateMipmapsForTexture_,
|
|
804
|
+
"generateMipmapsForTexture:");
|
|
805
|
+
_MTL_PRIVATE_DEF_SEL(geometryDescriptors,
|
|
806
|
+
"geometryDescriptors");
|
|
807
|
+
_MTL_PRIVATE_DEF_SEL(getBytes_bytesPerRow_bytesPerImage_fromRegion_mipmapLevel_slice_,
|
|
808
|
+
"getBytes:bytesPerRow:bytesPerImage:fromRegion:mipmapLevel:slice:");
|
|
809
|
+
_MTL_PRIVATE_DEF_SEL(getBytes_bytesPerRow_fromRegion_mipmapLevel_,
|
|
810
|
+
"getBytes:bytesPerRow:fromRegion:mipmapLevel:");
|
|
811
|
+
_MTL_PRIVATE_DEF_SEL(getBytes_strides_fromSliceOrigin_sliceDimensions_,
|
|
812
|
+
"getBytes:strides:fromSliceOrigin:sliceDimensions:");
|
|
813
|
+
_MTL_PRIVATE_DEF_SEL(getDefaultSamplePositions_count_,
|
|
814
|
+
"getDefaultSamplePositions:count:");
|
|
815
|
+
_MTL_PRIVATE_DEF_SEL(getPhysicalIndexForLogicalIndex_,
|
|
816
|
+
"getPhysicalIndexForLogicalIndex:");
|
|
817
|
+
_MTL_PRIVATE_DEF_SEL(getSamplePositions_count_,
|
|
818
|
+
"getSamplePositions:count:");
|
|
819
|
+
_MTL_PRIVATE_DEF_SEL(getTextureAccessCounters_region_mipLevel_slice_resetCounters_countersBuffer_countersBufferOffset_,
|
|
820
|
+
"getTextureAccessCounters:region:mipLevel:slice:resetCounters:countersBuffer:countersBufferOffset:");
|
|
821
|
+
_MTL_PRIVATE_DEF_SEL(gpuAddress,
|
|
822
|
+
"gpuAddress");
|
|
823
|
+
_MTL_PRIVATE_DEF_SEL(gpuResourceID,
|
|
824
|
+
"gpuResourceID");
|
|
825
|
+
_MTL_PRIVATE_DEF_SEL(groups,
|
|
826
|
+
"groups");
|
|
827
|
+
_MTL_PRIVATE_DEF_SEL(hasUnifiedMemory,
|
|
828
|
+
"hasUnifiedMemory");
|
|
829
|
+
_MTL_PRIVATE_DEF_SEL(hazardTrackingMode,
|
|
830
|
+
"hazardTrackingMode");
|
|
831
|
+
_MTL_PRIVATE_DEF_SEL(heap,
|
|
832
|
+
"heap");
|
|
833
|
+
_MTL_PRIVATE_DEF_SEL(heapAccelerationStructureSizeAndAlignWithDescriptor_,
|
|
834
|
+
"heapAccelerationStructureSizeAndAlignWithDescriptor:");
|
|
835
|
+
_MTL_PRIVATE_DEF_SEL(heapAccelerationStructureSizeAndAlignWithSize_,
|
|
836
|
+
"heapAccelerationStructureSizeAndAlignWithSize:");
|
|
837
|
+
_MTL_PRIVATE_DEF_SEL(heapBufferSizeAndAlignWithLength_options_,
|
|
838
|
+
"heapBufferSizeAndAlignWithLength:options:");
|
|
839
|
+
_MTL_PRIVATE_DEF_SEL(heapOffset,
|
|
840
|
+
"heapOffset");
|
|
841
|
+
_MTL_PRIVATE_DEF_SEL(heapTextureSizeAndAlignWithDescriptor_,
|
|
842
|
+
"heapTextureSizeAndAlignWithDescriptor:");
|
|
843
|
+
_MTL_PRIVATE_DEF_SEL(height,
|
|
844
|
+
"height");
|
|
845
|
+
_MTL_PRIVATE_DEF_SEL(horizontal,
|
|
846
|
+
"horizontal");
|
|
847
|
+
_MTL_PRIVATE_DEF_SEL(horizontalSampleStorage,
|
|
848
|
+
"horizontalSampleStorage");
|
|
849
|
+
_MTL_PRIVATE_DEF_SEL(imageblockMemoryLengthForDimensions_,
|
|
850
|
+
"imageblockMemoryLengthForDimensions:");
|
|
851
|
+
_MTL_PRIVATE_DEF_SEL(imageblockSampleLength,
|
|
852
|
+
"imageblockSampleLength");
|
|
853
|
+
_MTL_PRIVATE_DEF_SEL(index,
|
|
854
|
+
"index");
|
|
855
|
+
_MTL_PRIVATE_DEF_SEL(indexBuffer,
|
|
856
|
+
"indexBuffer");
|
|
857
|
+
_MTL_PRIVATE_DEF_SEL(indexBufferIndex,
|
|
858
|
+
"indexBufferIndex");
|
|
859
|
+
_MTL_PRIVATE_DEF_SEL(indexBufferOffset,
|
|
860
|
+
"indexBufferOffset");
|
|
861
|
+
_MTL_PRIVATE_DEF_SEL(indexType,
|
|
862
|
+
"indexType");
|
|
863
|
+
_MTL_PRIVATE_DEF_SEL(indirectComputeCommandAtIndex_,
|
|
864
|
+
"indirectComputeCommandAtIndex:");
|
|
865
|
+
_MTL_PRIVATE_DEF_SEL(indirectRenderCommandAtIndex_,
|
|
866
|
+
"indirectRenderCommandAtIndex:");
|
|
867
|
+
_MTL_PRIVATE_DEF_SEL(inheritBuffers,
|
|
868
|
+
"inheritBuffers");
|
|
869
|
+
_MTL_PRIVATE_DEF_SEL(inheritCullMode,
|
|
870
|
+
"inheritCullMode");
|
|
871
|
+
_MTL_PRIVATE_DEF_SEL(inheritDepthBias,
|
|
872
|
+
"inheritDepthBias");
|
|
873
|
+
_MTL_PRIVATE_DEF_SEL(inheritDepthClipMode,
|
|
874
|
+
"inheritDepthClipMode");
|
|
875
|
+
_MTL_PRIVATE_DEF_SEL(inheritDepthStencilState,
|
|
876
|
+
"inheritDepthStencilState");
|
|
877
|
+
_MTL_PRIVATE_DEF_SEL(inheritFrontFacingWinding,
|
|
878
|
+
"inheritFrontFacingWinding");
|
|
879
|
+
_MTL_PRIVATE_DEF_SEL(inheritPipelineState,
|
|
880
|
+
"inheritPipelineState");
|
|
881
|
+
_MTL_PRIVATE_DEF_SEL(inheritTriangleFillMode,
|
|
882
|
+
"inheritTriangleFillMode");
|
|
883
|
+
_MTL_PRIVATE_DEF_SEL(init,
|
|
884
|
+
"init");
|
|
885
|
+
_MTL_PRIVATE_DEF_SEL(initWithArgumentIndex_,
|
|
886
|
+
"initWithArgumentIndex:");
|
|
887
|
+
_MTL_PRIVATE_DEF_SEL(initWithDispatchQueue_,
|
|
888
|
+
"initWithDispatchQueue:");
|
|
889
|
+
_MTL_PRIVATE_DEF_SEL(initWithFunctionName_nodes_outputNode_attributes_,
|
|
890
|
+
"initWithFunctionName:nodes:outputNode:attributes:");
|
|
891
|
+
_MTL_PRIVATE_DEF_SEL(initWithName_arguments_controlDependencies_,
|
|
892
|
+
"initWithName:arguments:controlDependencies:");
|
|
893
|
+
_MTL_PRIVATE_DEF_SEL(initWithRank_values_,
|
|
894
|
+
"initWithRank:values:");
|
|
895
|
+
_MTL_PRIVATE_DEF_SEL(initWithSampleCount_,
|
|
896
|
+
"initWithSampleCount:");
|
|
897
|
+
_MTL_PRIVATE_DEF_SEL(initWithSampleCount_horizontal_vertical_,
|
|
898
|
+
"initWithSampleCount:horizontal:vertical:");
|
|
899
|
+
_MTL_PRIVATE_DEF_SEL(initialCapacity,
|
|
900
|
+
"initialCapacity");
|
|
901
|
+
_MTL_PRIVATE_DEF_SEL(initializeBindings,
|
|
902
|
+
"initializeBindings");
|
|
903
|
+
_MTL_PRIVATE_DEF_SEL(inputDimensionsAtBufferIndex_,
|
|
904
|
+
"inputDimensionsAtBufferIndex:");
|
|
905
|
+
_MTL_PRIVATE_DEF_SEL(inputPrimitiveTopology,
|
|
906
|
+
"inputPrimitiveTopology");
|
|
907
|
+
_MTL_PRIVATE_DEF_SEL(insertDebugCaptureBoundary,
|
|
908
|
+
"insertDebugCaptureBoundary");
|
|
909
|
+
_MTL_PRIVATE_DEF_SEL(insertDebugSignpost_,
|
|
910
|
+
"insertDebugSignpost:");
|
|
911
|
+
_MTL_PRIVATE_DEF_SEL(insertLibraries,
|
|
912
|
+
"insertLibraries");
|
|
913
|
+
_MTL_PRIVATE_DEF_SEL(installName,
|
|
914
|
+
"installName");
|
|
915
|
+
_MTL_PRIVATE_DEF_SEL(instanceCount,
|
|
916
|
+
"instanceCount");
|
|
917
|
+
_MTL_PRIVATE_DEF_SEL(instanceCountBuffer,
|
|
918
|
+
"instanceCountBuffer");
|
|
919
|
+
_MTL_PRIVATE_DEF_SEL(instanceCountBufferOffset,
|
|
920
|
+
"instanceCountBufferOffset");
|
|
921
|
+
_MTL_PRIVATE_DEF_SEL(instanceDescriptorBuffer,
|
|
922
|
+
"instanceDescriptorBuffer");
|
|
923
|
+
_MTL_PRIVATE_DEF_SEL(instanceDescriptorBufferOffset,
|
|
924
|
+
"instanceDescriptorBufferOffset");
|
|
925
|
+
_MTL_PRIVATE_DEF_SEL(instanceDescriptorStride,
|
|
926
|
+
"instanceDescriptorStride");
|
|
927
|
+
_MTL_PRIVATE_DEF_SEL(instanceDescriptorType,
|
|
928
|
+
"instanceDescriptorType");
|
|
929
|
+
_MTL_PRIVATE_DEF_SEL(instanceTransformationMatrixLayout,
|
|
930
|
+
"instanceTransformationMatrixLayout");
|
|
931
|
+
_MTL_PRIVATE_DEF_SEL(instancedAccelerationStructures,
|
|
932
|
+
"instancedAccelerationStructures");
|
|
933
|
+
_MTL_PRIVATE_DEF_SEL(intermediatesHeapSize,
|
|
934
|
+
"intermediatesHeapSize");
|
|
935
|
+
_MTL_PRIVATE_DEF_SEL(intersectionFunctionTableDescriptor,
|
|
936
|
+
"intersectionFunctionTableDescriptor");
|
|
937
|
+
_MTL_PRIVATE_DEF_SEL(intersectionFunctionTableOffset,
|
|
938
|
+
"intersectionFunctionTableOffset");
|
|
939
|
+
_MTL_PRIVATE_DEF_SEL(invalidateCounterRange_,
|
|
940
|
+
"invalidateCounterRange:");
|
|
941
|
+
_MTL_PRIVATE_DEF_SEL(iosurface,
|
|
942
|
+
"iosurface");
|
|
943
|
+
_MTL_PRIVATE_DEF_SEL(iosurfacePlane,
|
|
944
|
+
"iosurfacePlane");
|
|
945
|
+
_MTL_PRIVATE_DEF_SEL(isActive,
|
|
946
|
+
"isActive");
|
|
947
|
+
_MTL_PRIVATE_DEF_SEL(isAliasable,
|
|
948
|
+
"isAliasable");
|
|
949
|
+
_MTL_PRIVATE_DEF_SEL(isAlphaToCoverageEnabled,
|
|
950
|
+
"isAlphaToCoverageEnabled");
|
|
951
|
+
_MTL_PRIVATE_DEF_SEL(isAlphaToOneEnabled,
|
|
952
|
+
"isAlphaToOneEnabled");
|
|
953
|
+
_MTL_PRIVATE_DEF_SEL(isArgument,
|
|
954
|
+
"isArgument");
|
|
955
|
+
_MTL_PRIVATE_DEF_SEL(isBlendingEnabled,
|
|
956
|
+
"isBlendingEnabled");
|
|
957
|
+
_MTL_PRIVATE_DEF_SEL(isCapturing,
|
|
958
|
+
"isCapturing");
|
|
959
|
+
_MTL_PRIVATE_DEF_SEL(isDepth24Stencil8PixelFormatSupported,
|
|
960
|
+
"isDepth24Stencil8PixelFormatSupported");
|
|
961
|
+
_MTL_PRIVATE_DEF_SEL(isDepthTexture,
|
|
962
|
+
"isDepthTexture");
|
|
963
|
+
_MTL_PRIVATE_DEF_SEL(isDepthWriteEnabled,
|
|
964
|
+
"isDepthWriteEnabled");
|
|
965
|
+
_MTL_PRIVATE_DEF_SEL(isFramebufferOnly,
|
|
966
|
+
"isFramebufferOnly");
|
|
967
|
+
_MTL_PRIVATE_DEF_SEL(isHeadless,
|
|
968
|
+
"isHeadless");
|
|
969
|
+
_MTL_PRIVATE_DEF_SEL(isLowPower,
|
|
970
|
+
"isLowPower");
|
|
971
|
+
_MTL_PRIVATE_DEF_SEL(isPatchControlPointData,
|
|
972
|
+
"isPatchControlPointData");
|
|
973
|
+
_MTL_PRIVATE_DEF_SEL(isPatchData,
|
|
974
|
+
"isPatchData");
|
|
975
|
+
_MTL_PRIVATE_DEF_SEL(isRasterizationEnabled,
|
|
976
|
+
"isRasterizationEnabled");
|
|
977
|
+
_MTL_PRIVATE_DEF_SEL(isRemovable,
|
|
978
|
+
"isRemovable");
|
|
979
|
+
_MTL_PRIVATE_DEF_SEL(isShareable,
|
|
980
|
+
"isShareable");
|
|
981
|
+
_MTL_PRIVATE_DEF_SEL(isSparse,
|
|
982
|
+
"isSparse");
|
|
983
|
+
_MTL_PRIVATE_DEF_SEL(isTessellationFactorScaleEnabled,
|
|
984
|
+
"isTessellationFactorScaleEnabled");
|
|
985
|
+
_MTL_PRIVATE_DEF_SEL(isUsed,
|
|
986
|
+
"isUsed");
|
|
987
|
+
_MTL_PRIVATE_DEF_SEL(kernelEndTime,
|
|
988
|
+
"kernelEndTime");
|
|
989
|
+
_MTL_PRIVATE_DEF_SEL(kernelStartTime,
|
|
990
|
+
"kernelStartTime");
|
|
991
|
+
_MTL_PRIVATE_DEF_SEL(label,
|
|
992
|
+
"label");
|
|
993
|
+
_MTL_PRIVATE_DEF_SEL(languageVersion,
|
|
994
|
+
"languageVersion");
|
|
995
|
+
_MTL_PRIVATE_DEF_SEL(layerAtIndex_,
|
|
996
|
+
"layerAtIndex:");
|
|
997
|
+
_MTL_PRIVATE_DEF_SEL(layerCount,
|
|
998
|
+
"layerCount");
|
|
999
|
+
_MTL_PRIVATE_DEF_SEL(layers,
|
|
1000
|
+
"layers");
|
|
1001
|
+
_MTL_PRIVATE_DEF_SEL(layouts,
|
|
1002
|
+
"layouts");
|
|
1003
|
+
_MTL_PRIVATE_DEF_SEL(length,
|
|
1004
|
+
"length");
|
|
1005
|
+
_MTL_PRIVATE_DEF_SEL(level,
|
|
1006
|
+
"level");
|
|
1007
|
+
_MTL_PRIVATE_DEF_SEL(levelRange,
|
|
1008
|
+
"levelRange");
|
|
1009
|
+
_MTL_PRIVATE_DEF_SEL(libraries,
|
|
1010
|
+
"libraries");
|
|
1011
|
+
_MTL_PRIVATE_DEF_SEL(library,
|
|
1012
|
+
"library");
|
|
1013
|
+
_MTL_PRIVATE_DEF_SEL(libraryType,
|
|
1014
|
+
"libraryType");
|
|
1015
|
+
_MTL_PRIVATE_DEF_SEL(line,
|
|
1016
|
+
"line");
|
|
1017
|
+
_MTL_PRIVATE_DEF_SEL(linkedFunctions,
|
|
1018
|
+
"linkedFunctions");
|
|
1019
|
+
_MTL_PRIVATE_DEF_SEL(loadAction,
|
|
1020
|
+
"loadAction");
|
|
1021
|
+
_MTL_PRIVATE_DEF_SEL(loadBuffer_offset_size_sourceHandle_sourceHandleOffset_,
|
|
1022
|
+
"loadBuffer:offset:size:sourceHandle:sourceHandleOffset:");
|
|
1023
|
+
_MTL_PRIVATE_DEF_SEL(loadBytes_size_sourceHandle_sourceHandleOffset_,
|
|
1024
|
+
"loadBytes:size:sourceHandle:sourceHandleOffset:");
|
|
1025
|
+
_MTL_PRIVATE_DEF_SEL(loadTexture_slice_level_size_sourceBytesPerRow_sourceBytesPerImage_destinationOrigin_sourceHandle_sourceHandleOffset_,
|
|
1026
|
+
"loadTexture:slice:level:size:sourceBytesPerRow:sourceBytesPerImage:destinationOrigin:sourceHandle:sourceHandleOffset:");
|
|
1027
|
+
_MTL_PRIVATE_DEF_SEL(location,
|
|
1028
|
+
"location");
|
|
1029
|
+
_MTL_PRIVATE_DEF_SEL(locationNumber,
|
|
1030
|
+
"locationNumber");
|
|
1031
|
+
_MTL_PRIVATE_DEF_SEL(lodAverage,
|
|
1032
|
+
"lodAverage");
|
|
1033
|
+
_MTL_PRIVATE_DEF_SEL(lodBias,
|
|
1034
|
+
"lodBias");
|
|
1035
|
+
_MTL_PRIVATE_DEF_SEL(lodMaxClamp,
|
|
1036
|
+
"lodMaxClamp");
|
|
1037
|
+
_MTL_PRIVATE_DEF_SEL(lodMinClamp,
|
|
1038
|
+
"lodMinClamp");
|
|
1039
|
+
_MTL_PRIVATE_DEF_SEL(logState,
|
|
1040
|
+
"logState");
|
|
1041
|
+
_MTL_PRIVATE_DEF_SEL(logs,
|
|
1042
|
+
"logs");
|
|
1043
|
+
_MTL_PRIVATE_DEF_SEL(lookupArchives,
|
|
1044
|
+
"lookupArchives");
|
|
1045
|
+
_MTL_PRIVATE_DEF_SEL(machineLearningCommandEncoder,
|
|
1046
|
+
"machineLearningCommandEncoder");
|
|
1047
|
+
_MTL_PRIVATE_DEF_SEL(machineLearningFunctionDescriptor,
|
|
1048
|
+
"machineLearningFunctionDescriptor");
|
|
1049
|
+
_MTL_PRIVATE_DEF_SEL(magFilter,
|
|
1050
|
+
"magFilter");
|
|
1051
|
+
_MTL_PRIVATE_DEF_SEL(makeAliasable,
|
|
1052
|
+
"makeAliasable");
|
|
1053
|
+
_MTL_PRIVATE_DEF_SEL(mapPhysicalToScreenCoordinates_forLayer_,
|
|
1054
|
+
"mapPhysicalToScreenCoordinates:forLayer:");
|
|
1055
|
+
_MTL_PRIVATE_DEF_SEL(mapScreenToPhysicalCoordinates_forLayer_,
|
|
1056
|
+
"mapScreenToPhysicalCoordinates:forLayer:");
|
|
1057
|
+
_MTL_PRIVATE_DEF_SEL(mathFloatingPointFunctions,
|
|
1058
|
+
"mathFloatingPointFunctions");
|
|
1059
|
+
_MTL_PRIVATE_DEF_SEL(mathMode,
|
|
1060
|
+
"mathMode");
|
|
1061
|
+
_MTL_PRIVATE_DEF_SEL(maxAnisotropy,
|
|
1062
|
+
"maxAnisotropy");
|
|
1063
|
+
_MTL_PRIVATE_DEF_SEL(maxArgumentBufferSamplerCount,
|
|
1064
|
+
"maxArgumentBufferSamplerCount");
|
|
1065
|
+
_MTL_PRIVATE_DEF_SEL(maxAvailableSizeWithAlignment_,
|
|
1066
|
+
"maxAvailableSizeWithAlignment:");
|
|
1067
|
+
_MTL_PRIVATE_DEF_SEL(maxBufferBindCount,
|
|
1068
|
+
"maxBufferBindCount");
|
|
1069
|
+
_MTL_PRIVATE_DEF_SEL(maxBufferLength,
|
|
1070
|
+
"maxBufferLength");
|
|
1071
|
+
_MTL_PRIVATE_DEF_SEL(maxCallStackDepth,
|
|
1072
|
+
"maxCallStackDepth");
|
|
1073
|
+
_MTL_PRIVATE_DEF_SEL(maxCommandBufferCount,
|
|
1074
|
+
"maxCommandBufferCount");
|
|
1075
|
+
_MTL_PRIVATE_DEF_SEL(maxCommandsInFlight,
|
|
1076
|
+
"maxCommandsInFlight");
|
|
1077
|
+
_MTL_PRIVATE_DEF_SEL(maxCompatiblePlacementSparsePageSize,
|
|
1078
|
+
"maxCompatiblePlacementSparsePageSize");
|
|
1079
|
+
_MTL_PRIVATE_DEF_SEL(maxFragmentBufferBindCount,
|
|
1080
|
+
"maxFragmentBufferBindCount");
|
|
1081
|
+
_MTL_PRIVATE_DEF_SEL(maxFragmentCallStackDepth,
|
|
1082
|
+
"maxFragmentCallStackDepth");
|
|
1083
|
+
_MTL_PRIVATE_DEF_SEL(maxInstanceCount,
|
|
1084
|
+
"maxInstanceCount");
|
|
1085
|
+
_MTL_PRIVATE_DEF_SEL(maxKernelBufferBindCount,
|
|
1086
|
+
"maxKernelBufferBindCount");
|
|
1087
|
+
_MTL_PRIVATE_DEF_SEL(maxKernelThreadgroupMemoryBindCount,
|
|
1088
|
+
"maxKernelThreadgroupMemoryBindCount");
|
|
1089
|
+
_MTL_PRIVATE_DEF_SEL(maxMeshBufferBindCount,
|
|
1090
|
+
"maxMeshBufferBindCount");
|
|
1091
|
+
_MTL_PRIVATE_DEF_SEL(maxMotionTransformCount,
|
|
1092
|
+
"maxMotionTransformCount");
|
|
1093
|
+
_MTL_PRIVATE_DEF_SEL(maxObjectBufferBindCount,
|
|
1094
|
+
"maxObjectBufferBindCount");
|
|
1095
|
+
_MTL_PRIVATE_DEF_SEL(maxObjectThreadgroupMemoryBindCount,
|
|
1096
|
+
"maxObjectThreadgroupMemoryBindCount");
|
|
1097
|
+
_MTL_PRIVATE_DEF_SEL(maxSampleCount,
|
|
1098
|
+
"maxSampleCount");
|
|
1099
|
+
_MTL_PRIVATE_DEF_SEL(maxSamplerStateBindCount,
|
|
1100
|
+
"maxSamplerStateBindCount");
|
|
1101
|
+
_MTL_PRIVATE_DEF_SEL(maxTessellationFactor,
|
|
1102
|
+
"maxTessellationFactor");
|
|
1103
|
+
_MTL_PRIVATE_DEF_SEL(maxTextureBindCount,
|
|
1104
|
+
"maxTextureBindCount");
|
|
1105
|
+
_MTL_PRIVATE_DEF_SEL(maxThreadgroupMemoryLength,
|
|
1106
|
+
"maxThreadgroupMemoryLength");
|
|
1107
|
+
_MTL_PRIVATE_DEF_SEL(maxThreadsPerThreadgroup,
|
|
1108
|
+
"maxThreadsPerThreadgroup");
|
|
1109
|
+
_MTL_PRIVATE_DEF_SEL(maxTotalThreadgroupsPerMeshGrid,
|
|
1110
|
+
"maxTotalThreadgroupsPerMeshGrid");
|
|
1111
|
+
_MTL_PRIVATE_DEF_SEL(maxTotalThreadsPerMeshThreadgroup,
|
|
1112
|
+
"maxTotalThreadsPerMeshThreadgroup");
|
|
1113
|
+
_MTL_PRIVATE_DEF_SEL(maxTotalThreadsPerObjectThreadgroup,
|
|
1114
|
+
"maxTotalThreadsPerObjectThreadgroup");
|
|
1115
|
+
_MTL_PRIVATE_DEF_SEL(maxTotalThreadsPerThreadgroup,
|
|
1116
|
+
"maxTotalThreadsPerThreadgroup");
|
|
1117
|
+
_MTL_PRIVATE_DEF_SEL(maxTransferRate,
|
|
1118
|
+
"maxTransferRate");
|
|
1119
|
+
_MTL_PRIVATE_DEF_SEL(maxVertexAmplificationCount,
|
|
1120
|
+
"maxVertexAmplificationCount");
|
|
1121
|
+
_MTL_PRIVATE_DEF_SEL(maxVertexBufferBindCount,
|
|
1122
|
+
"maxVertexBufferBindCount");
|
|
1123
|
+
_MTL_PRIVATE_DEF_SEL(maxVertexCallStackDepth,
|
|
1124
|
+
"maxVertexCallStackDepth");
|
|
1125
|
+
_MTL_PRIVATE_DEF_SEL(maximumConcurrentCompilationTaskCount,
|
|
1126
|
+
"maximumConcurrentCompilationTaskCount");
|
|
1127
|
+
_MTL_PRIVATE_DEF_SEL(memberByName_,
|
|
1128
|
+
"memberByName:");
|
|
1129
|
+
_MTL_PRIVATE_DEF_SEL(members,
|
|
1130
|
+
"members");
|
|
1131
|
+
_MTL_PRIVATE_DEF_SEL(memoryBarrierWithResources_count_,
|
|
1132
|
+
"memoryBarrierWithResources:count:");
|
|
1133
|
+
_MTL_PRIVATE_DEF_SEL(memoryBarrierWithResources_count_afterStages_beforeStages_,
|
|
1134
|
+
"memoryBarrierWithResources:count:afterStages:beforeStages:");
|
|
1135
|
+
_MTL_PRIVATE_DEF_SEL(memoryBarrierWithScope_,
|
|
1136
|
+
"memoryBarrierWithScope:");
|
|
1137
|
+
_MTL_PRIVATE_DEF_SEL(memoryBarrierWithScope_afterStages_beforeStages_,
|
|
1138
|
+
"memoryBarrierWithScope:afterStages:beforeStages:");
|
|
1139
|
+
_MTL_PRIVATE_DEF_SEL(meshAdditionalBinaryFunctions,
|
|
1140
|
+
"meshAdditionalBinaryFunctions");
|
|
1141
|
+
_MTL_PRIVATE_DEF_SEL(meshBindings,
|
|
1142
|
+
"meshBindings");
|
|
1143
|
+
_MTL_PRIVATE_DEF_SEL(meshBuffers,
|
|
1144
|
+
"meshBuffers");
|
|
1145
|
+
_MTL_PRIVATE_DEF_SEL(meshFunction,
|
|
1146
|
+
"meshFunction");
|
|
1147
|
+
_MTL_PRIVATE_DEF_SEL(meshFunctionDescriptor,
|
|
1148
|
+
"meshFunctionDescriptor");
|
|
1149
|
+
_MTL_PRIVATE_DEF_SEL(meshLinkedFunctions,
|
|
1150
|
+
"meshLinkedFunctions");
|
|
1151
|
+
_MTL_PRIVATE_DEF_SEL(meshLinkingDescriptor,
|
|
1152
|
+
"meshLinkingDescriptor");
|
|
1153
|
+
_MTL_PRIVATE_DEF_SEL(meshStaticLinkingDescriptor,
|
|
1154
|
+
"meshStaticLinkingDescriptor");
|
|
1155
|
+
_MTL_PRIVATE_DEF_SEL(meshThreadExecutionWidth,
|
|
1156
|
+
"meshThreadExecutionWidth");
|
|
1157
|
+
_MTL_PRIVATE_DEF_SEL(meshThreadgroupSizeIsMultipleOfThreadExecutionWidth,
|
|
1158
|
+
"meshThreadgroupSizeIsMultipleOfThreadExecutionWidth");
|
|
1159
|
+
_MTL_PRIVATE_DEF_SEL(minFilter,
|
|
1160
|
+
"minFilter");
|
|
1161
|
+
_MTL_PRIVATE_DEF_SEL(minimumLinearTextureAlignmentForPixelFormat_,
|
|
1162
|
+
"minimumLinearTextureAlignmentForPixelFormat:");
|
|
1163
|
+
_MTL_PRIVATE_DEF_SEL(minimumTextureBufferAlignmentForPixelFormat_,
|
|
1164
|
+
"minimumTextureBufferAlignmentForPixelFormat:");
|
|
1165
|
+
_MTL_PRIVATE_DEF_SEL(mipFilter,
|
|
1166
|
+
"mipFilter");
|
|
1167
|
+
_MTL_PRIVATE_DEF_SEL(mipmapLevelCount,
|
|
1168
|
+
"mipmapLevelCount");
|
|
1169
|
+
_MTL_PRIVATE_DEF_SEL(motionEndBorderMode,
|
|
1170
|
+
"motionEndBorderMode");
|
|
1171
|
+
_MTL_PRIVATE_DEF_SEL(motionEndTime,
|
|
1172
|
+
"motionEndTime");
|
|
1173
|
+
_MTL_PRIVATE_DEF_SEL(motionKeyframeCount,
|
|
1174
|
+
"motionKeyframeCount");
|
|
1175
|
+
_MTL_PRIVATE_DEF_SEL(motionStartBorderMode,
|
|
1176
|
+
"motionStartBorderMode");
|
|
1177
|
+
_MTL_PRIVATE_DEF_SEL(motionStartTime,
|
|
1178
|
+
"motionStartTime");
|
|
1179
|
+
_MTL_PRIVATE_DEF_SEL(motionTransformBuffer,
|
|
1180
|
+
"motionTransformBuffer");
|
|
1181
|
+
_MTL_PRIVATE_DEF_SEL(motionTransformBufferOffset,
|
|
1182
|
+
"motionTransformBufferOffset");
|
|
1183
|
+
_MTL_PRIVATE_DEF_SEL(motionTransformCount,
|
|
1184
|
+
"motionTransformCount");
|
|
1185
|
+
_MTL_PRIVATE_DEF_SEL(motionTransformCountBuffer,
|
|
1186
|
+
"motionTransformCountBuffer");
|
|
1187
|
+
_MTL_PRIVATE_DEF_SEL(motionTransformCountBufferOffset,
|
|
1188
|
+
"motionTransformCountBufferOffset");
|
|
1189
|
+
_MTL_PRIVATE_DEF_SEL(motionTransformStride,
|
|
1190
|
+
"motionTransformStride");
|
|
1191
|
+
_MTL_PRIVATE_DEF_SEL(motionTransformType,
|
|
1192
|
+
"motionTransformType");
|
|
1193
|
+
_MTL_PRIVATE_DEF_SEL(moveTextureMappingsFromTexture_sourceSlice_sourceLevel_sourceOrigin_sourceSize_toTexture_destinationSlice_destinationLevel_destinationOrigin_,
|
|
1194
|
+
"moveTextureMappingsFromTexture:sourceSlice:sourceLevel:sourceOrigin:sourceSize:toTexture:destinationSlice:destinationLevel:destinationOrigin:");
|
|
1195
|
+
_MTL_PRIVATE_DEF_SEL(mutability,
|
|
1196
|
+
"mutability");
|
|
1197
|
+
_MTL_PRIVATE_DEF_SEL(name,
|
|
1198
|
+
"name");
|
|
1199
|
+
_MTL_PRIVATE_DEF_SEL(newAccelerationStructureWithDescriptor_,
|
|
1200
|
+
"newAccelerationStructureWithDescriptor:");
|
|
1201
|
+
_MTL_PRIVATE_DEF_SEL(newAccelerationStructureWithDescriptor_offset_,
|
|
1202
|
+
"newAccelerationStructureWithDescriptor:offset:");
|
|
1203
|
+
_MTL_PRIVATE_DEF_SEL(newAccelerationStructureWithSize_,
|
|
1204
|
+
"newAccelerationStructureWithSize:");
|
|
1205
|
+
_MTL_PRIVATE_DEF_SEL(newAccelerationStructureWithSize_offset_,
|
|
1206
|
+
"newAccelerationStructureWithSize:offset:");
|
|
1207
|
+
_MTL_PRIVATE_DEF_SEL(newArchiveWithURL_error_,
|
|
1208
|
+
"newArchiveWithURL:error:");
|
|
1209
|
+
_MTL_PRIVATE_DEF_SEL(newArgumentEncoderForBufferAtIndex_,
|
|
1210
|
+
"newArgumentEncoderForBufferAtIndex:");
|
|
1211
|
+
_MTL_PRIVATE_DEF_SEL(newArgumentEncoderWithArguments_,
|
|
1212
|
+
"newArgumentEncoderWithArguments:");
|
|
1213
|
+
_MTL_PRIVATE_DEF_SEL(newArgumentEncoderWithBufferBinding_,
|
|
1214
|
+
"newArgumentEncoderWithBufferBinding:");
|
|
1215
|
+
_MTL_PRIVATE_DEF_SEL(newArgumentEncoderWithBufferIndex_,
|
|
1216
|
+
"newArgumentEncoderWithBufferIndex:");
|
|
1217
|
+
_MTL_PRIVATE_DEF_SEL(newArgumentEncoderWithBufferIndex_reflection_,
|
|
1218
|
+
"newArgumentEncoderWithBufferIndex:reflection:");
|
|
1219
|
+
_MTL_PRIVATE_DEF_SEL(newArgumentTableWithDescriptor_error_,
|
|
1220
|
+
"newArgumentTableWithDescriptor:error:");
|
|
1221
|
+
_MTL_PRIVATE_DEF_SEL(newBinaryArchiveWithDescriptor_error_,
|
|
1222
|
+
"newBinaryArchiveWithDescriptor:error:");
|
|
1223
|
+
_MTL_PRIVATE_DEF_SEL(newBinaryFunctionWithDescriptor_compilerTaskOptions_completionHandler_,
|
|
1224
|
+
"newBinaryFunctionWithDescriptor:compilerTaskOptions:completionHandler:");
|
|
1225
|
+
_MTL_PRIVATE_DEF_SEL(newBinaryFunctionWithDescriptor_compilerTaskOptions_error_,
|
|
1226
|
+
"newBinaryFunctionWithDescriptor:compilerTaskOptions:error:");
|
|
1227
|
+
_MTL_PRIVATE_DEF_SEL(newBinaryFunctionWithDescriptor_error_,
|
|
1228
|
+
"newBinaryFunctionWithDescriptor:error:");
|
|
1229
|
+
_MTL_PRIVATE_DEF_SEL(newBufferWithBytes_length_options_,
|
|
1230
|
+
"newBufferWithBytes:length:options:");
|
|
1231
|
+
_MTL_PRIVATE_DEF_SEL(newBufferWithBytesNoCopy_length_options_deallocator_,
|
|
1232
|
+
"newBufferWithBytesNoCopy:length:options:deallocator:");
|
|
1233
|
+
_MTL_PRIVATE_DEF_SEL(newBufferWithLength_options_,
|
|
1234
|
+
"newBufferWithLength:options:");
|
|
1235
|
+
_MTL_PRIVATE_DEF_SEL(newBufferWithLength_options_offset_,
|
|
1236
|
+
"newBufferWithLength:options:offset:");
|
|
1237
|
+
_MTL_PRIVATE_DEF_SEL(newBufferWithLength_options_placementSparsePageSize_,
|
|
1238
|
+
"newBufferWithLength:options:placementSparsePageSize:");
|
|
1239
|
+
_MTL_PRIVATE_DEF_SEL(newCaptureScopeWithCommandQueue_,
|
|
1240
|
+
"newCaptureScopeWithCommandQueue:");
|
|
1241
|
+
_MTL_PRIVATE_DEF_SEL(newCaptureScopeWithDevice_,
|
|
1242
|
+
"newCaptureScopeWithDevice:");
|
|
1243
|
+
_MTL_PRIVATE_DEF_SEL(newCaptureScopeWithMTL4CommandQueue_,
|
|
1244
|
+
"newCaptureScopeWithMTL4CommandQueue:");
|
|
1245
|
+
_MTL_PRIVATE_DEF_SEL(newCommandAllocator,
|
|
1246
|
+
"newCommandAllocator");
|
|
1247
|
+
_MTL_PRIVATE_DEF_SEL(newCommandAllocatorWithDescriptor_error_,
|
|
1248
|
+
"newCommandAllocatorWithDescriptor:error:");
|
|
1249
|
+
_MTL_PRIVATE_DEF_SEL(newCommandBuffer,
|
|
1250
|
+
"newCommandBuffer");
|
|
1251
|
+
_MTL_PRIVATE_DEF_SEL(newCommandQueue,
|
|
1252
|
+
"newCommandQueue");
|
|
1253
|
+
_MTL_PRIVATE_DEF_SEL(newCommandQueueWithDescriptor_,
|
|
1254
|
+
"newCommandQueueWithDescriptor:");
|
|
1255
|
+
_MTL_PRIVATE_DEF_SEL(newCommandQueueWithMaxCommandBufferCount_,
|
|
1256
|
+
"newCommandQueueWithMaxCommandBufferCount:");
|
|
1257
|
+
_MTL_PRIVATE_DEF_SEL(newCompilerWithDescriptor_error_,
|
|
1258
|
+
"newCompilerWithDescriptor:error:");
|
|
1259
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithAdditionalBinaryFunctions_error_,
|
|
1260
|
+
"newComputePipelineStateWithAdditionalBinaryFunctions:error:");
|
|
1261
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithBinaryFunctions_error_,
|
|
1262
|
+
"newComputePipelineStateWithBinaryFunctions:error:");
|
|
1263
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_compilerTaskOptions_completionHandler_,
|
|
1264
|
+
"newComputePipelineStateWithDescriptor:compilerTaskOptions:completionHandler:");
|
|
1265
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_compilerTaskOptions_error_,
|
|
1266
|
+
"newComputePipelineStateWithDescriptor:compilerTaskOptions:error:");
|
|
1267
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_dynamicLinkingDescriptor_compilerTaskOptions_completionHandler_,
|
|
1268
|
+
"newComputePipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:completionHandler:");
|
|
1269
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_dynamicLinkingDescriptor_compilerTaskOptions_error_,
|
|
1270
|
+
"newComputePipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:error:");
|
|
1271
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_dynamicLinkingDescriptor_error_,
|
|
1272
|
+
"newComputePipelineStateWithDescriptor:dynamicLinkingDescriptor:error:");
|
|
1273
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_error_,
|
|
1274
|
+
"newComputePipelineStateWithDescriptor:error:");
|
|
1275
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_options_completionHandler_,
|
|
1276
|
+
"newComputePipelineStateWithDescriptor:options:completionHandler:");
|
|
1277
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithDescriptor_options_reflection_error_,
|
|
1278
|
+
"newComputePipelineStateWithDescriptor:options:reflection:error:");
|
|
1279
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithFunction_completionHandler_,
|
|
1280
|
+
"newComputePipelineStateWithFunction:completionHandler:");
|
|
1281
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithFunction_error_,
|
|
1282
|
+
"newComputePipelineStateWithFunction:error:");
|
|
1283
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithFunction_options_completionHandler_,
|
|
1284
|
+
"newComputePipelineStateWithFunction:options:completionHandler:");
|
|
1285
|
+
_MTL_PRIVATE_DEF_SEL(newComputePipelineStateWithFunction_options_reflection_error_,
|
|
1286
|
+
"newComputePipelineStateWithFunction:options:reflection:error:");
|
|
1287
|
+
_MTL_PRIVATE_DEF_SEL(newCounterHeapWithDescriptor_error_,
|
|
1288
|
+
"newCounterHeapWithDescriptor:error:");
|
|
1289
|
+
_MTL_PRIVATE_DEF_SEL(newCounterSampleBufferWithDescriptor_error_,
|
|
1290
|
+
"newCounterSampleBufferWithDescriptor:error:");
|
|
1291
|
+
_MTL_PRIVATE_DEF_SEL(newDefaultLibrary,
|
|
1292
|
+
"newDefaultLibrary");
|
|
1293
|
+
_MTL_PRIVATE_DEF_SEL(newDefaultLibraryWithBundle_error_,
|
|
1294
|
+
"newDefaultLibraryWithBundle:error:");
|
|
1295
|
+
_MTL_PRIVATE_DEF_SEL(newDepthStencilStateWithDescriptor_,
|
|
1296
|
+
"newDepthStencilStateWithDescriptor:");
|
|
1297
|
+
_MTL_PRIVATE_DEF_SEL(newDynamicLibrary_completionHandler_,
|
|
1298
|
+
"newDynamicLibrary:completionHandler:");
|
|
1299
|
+
_MTL_PRIVATE_DEF_SEL(newDynamicLibrary_error_,
|
|
1300
|
+
"newDynamicLibrary:error:");
|
|
1301
|
+
_MTL_PRIVATE_DEF_SEL(newDynamicLibraryWithURL_completionHandler_,
|
|
1302
|
+
"newDynamicLibraryWithURL:completionHandler:");
|
|
1303
|
+
_MTL_PRIVATE_DEF_SEL(newDynamicLibraryWithURL_error_,
|
|
1304
|
+
"newDynamicLibraryWithURL:error:");
|
|
1305
|
+
_MTL_PRIVATE_DEF_SEL(newEvent,
|
|
1306
|
+
"newEvent");
|
|
1307
|
+
_MTL_PRIVATE_DEF_SEL(newFence,
|
|
1308
|
+
"newFence");
|
|
1309
|
+
_MTL_PRIVATE_DEF_SEL(newFunctionWithDescriptor_completionHandler_,
|
|
1310
|
+
"newFunctionWithDescriptor:completionHandler:");
|
|
1311
|
+
_MTL_PRIVATE_DEF_SEL(newFunctionWithDescriptor_error_,
|
|
1312
|
+
"newFunctionWithDescriptor:error:");
|
|
1313
|
+
_MTL_PRIVATE_DEF_SEL(newFunctionWithName_,
|
|
1314
|
+
"newFunctionWithName:");
|
|
1315
|
+
_MTL_PRIVATE_DEF_SEL(newFunctionWithName_constantValues_completionHandler_,
|
|
1316
|
+
"newFunctionWithName:constantValues:completionHandler:");
|
|
1317
|
+
_MTL_PRIVATE_DEF_SEL(newFunctionWithName_constantValues_error_,
|
|
1318
|
+
"newFunctionWithName:constantValues:error:");
|
|
1319
|
+
_MTL_PRIVATE_DEF_SEL(newHeapWithDescriptor_,
|
|
1320
|
+
"newHeapWithDescriptor:");
|
|
1321
|
+
_MTL_PRIVATE_DEF_SEL(newIOCommandQueueWithDescriptor_error_,
|
|
1322
|
+
"newIOCommandQueueWithDescriptor:error:");
|
|
1323
|
+
_MTL_PRIVATE_DEF_SEL(newIOFileHandleWithURL_compressionMethod_error_,
|
|
1324
|
+
"newIOFileHandleWithURL:compressionMethod:error:");
|
|
1325
|
+
_MTL_PRIVATE_DEF_SEL(newIOFileHandleWithURL_error_,
|
|
1326
|
+
"newIOFileHandleWithURL:error:");
|
|
1327
|
+
_MTL_PRIVATE_DEF_SEL(newIOHandleWithURL_compressionMethod_error_,
|
|
1328
|
+
"newIOHandleWithURL:compressionMethod:error:");
|
|
1329
|
+
_MTL_PRIVATE_DEF_SEL(newIOHandleWithURL_error_,
|
|
1330
|
+
"newIOHandleWithURL:error:");
|
|
1331
|
+
_MTL_PRIVATE_DEF_SEL(newIndirectCommandBufferWithDescriptor_maxCommandCount_options_,
|
|
1332
|
+
"newIndirectCommandBufferWithDescriptor:maxCommandCount:options:");
|
|
1333
|
+
_MTL_PRIVATE_DEF_SEL(newIntersectionFunctionTableWithDescriptor_,
|
|
1334
|
+
"newIntersectionFunctionTableWithDescriptor:");
|
|
1335
|
+
_MTL_PRIVATE_DEF_SEL(newIntersectionFunctionTableWithDescriptor_stage_,
|
|
1336
|
+
"newIntersectionFunctionTableWithDescriptor:stage:");
|
|
1337
|
+
_MTL_PRIVATE_DEF_SEL(newIntersectionFunctionWithDescriptor_completionHandler_,
|
|
1338
|
+
"newIntersectionFunctionWithDescriptor:completionHandler:");
|
|
1339
|
+
_MTL_PRIVATE_DEF_SEL(newIntersectionFunctionWithDescriptor_error_,
|
|
1340
|
+
"newIntersectionFunctionWithDescriptor:error:");
|
|
1341
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithData_error_,
|
|
1342
|
+
"newLibraryWithData:error:");
|
|
1343
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithDescriptor_completionHandler_,
|
|
1344
|
+
"newLibraryWithDescriptor:completionHandler:");
|
|
1345
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithDescriptor_error_,
|
|
1346
|
+
"newLibraryWithDescriptor:error:");
|
|
1347
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithFile_error_,
|
|
1348
|
+
"newLibraryWithFile:error:");
|
|
1349
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithSource_options_completionHandler_,
|
|
1350
|
+
"newLibraryWithSource:options:completionHandler:");
|
|
1351
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithSource_options_error_,
|
|
1352
|
+
"newLibraryWithSource:options:error:");
|
|
1353
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithStitchedDescriptor_completionHandler_,
|
|
1354
|
+
"newLibraryWithStitchedDescriptor:completionHandler:");
|
|
1355
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithStitchedDescriptor_error_,
|
|
1356
|
+
"newLibraryWithStitchedDescriptor:error:");
|
|
1357
|
+
_MTL_PRIVATE_DEF_SEL(newLibraryWithURL_error_,
|
|
1358
|
+
"newLibraryWithURL:error:");
|
|
1359
|
+
_MTL_PRIVATE_DEF_SEL(newLogStateWithDescriptor_error_,
|
|
1360
|
+
"newLogStateWithDescriptor:error:");
|
|
1361
|
+
_MTL_PRIVATE_DEF_SEL(newMTL4CommandQueue,
|
|
1362
|
+
"newMTL4CommandQueue");
|
|
1363
|
+
_MTL_PRIVATE_DEF_SEL(newMTL4CommandQueueWithDescriptor_error_,
|
|
1364
|
+
"newMTL4CommandQueueWithDescriptor:error:");
|
|
1365
|
+
_MTL_PRIVATE_DEF_SEL(newMachineLearningPipelineStateWithDescriptor_completionHandler_,
|
|
1366
|
+
"newMachineLearningPipelineStateWithDescriptor:completionHandler:");
|
|
1367
|
+
_MTL_PRIVATE_DEF_SEL(newMachineLearningPipelineStateWithDescriptor_error_,
|
|
1368
|
+
"newMachineLearningPipelineStateWithDescriptor:error:");
|
|
1369
|
+
_MTL_PRIVATE_DEF_SEL(newPipelineDataSetSerializerWithDescriptor_,
|
|
1370
|
+
"newPipelineDataSetSerializerWithDescriptor:");
|
|
1371
|
+
_MTL_PRIVATE_DEF_SEL(newRasterizationRateMapWithDescriptor_,
|
|
1372
|
+
"newRasterizationRateMapWithDescriptor:");
|
|
1373
|
+
_MTL_PRIVATE_DEF_SEL(newRemoteBufferViewForDevice_,
|
|
1374
|
+
"newRemoteBufferViewForDevice:");
|
|
1375
|
+
_MTL_PRIVATE_DEF_SEL(newRemoteTextureViewForDevice_,
|
|
1376
|
+
"newRemoteTextureViewForDevice:");
|
|
1377
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineDescriptorForSpecialization,
|
|
1378
|
+
"newRenderPipelineDescriptorForSpecialization");
|
|
1379
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateBySpecializationWithDescriptor_pipeline_completionHandler_,
|
|
1380
|
+
"newRenderPipelineStateBySpecializationWithDescriptor:pipeline:completionHandler:");
|
|
1381
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateBySpecializationWithDescriptor_pipeline_error_,
|
|
1382
|
+
"newRenderPipelineStateBySpecializationWithDescriptor:pipeline:error:");
|
|
1383
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithAdditionalBinaryFunctions_error_,
|
|
1384
|
+
"newRenderPipelineStateWithAdditionalBinaryFunctions:error:");
|
|
1385
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithBinaryFunctions_error_,
|
|
1386
|
+
"newRenderPipelineStateWithBinaryFunctions:error:");
|
|
1387
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_compilerTaskOptions_completionHandler_,
|
|
1388
|
+
"newRenderPipelineStateWithDescriptor:compilerTaskOptions:completionHandler:");
|
|
1389
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_compilerTaskOptions_error_,
|
|
1390
|
+
"newRenderPipelineStateWithDescriptor:compilerTaskOptions:error:");
|
|
1391
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_completionHandler_,
|
|
1392
|
+
"newRenderPipelineStateWithDescriptor:completionHandler:");
|
|
1393
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_dynamicLinkingDescriptor_compilerTaskOptions_completionHandler_,
|
|
1394
|
+
"newRenderPipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:completionHandler:");
|
|
1395
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_dynamicLinkingDescriptor_compilerTaskOptions_error_,
|
|
1396
|
+
"newRenderPipelineStateWithDescriptor:dynamicLinkingDescriptor:compilerTaskOptions:error:");
|
|
1397
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_dynamicLinkingDescriptor_error_,
|
|
1398
|
+
"newRenderPipelineStateWithDescriptor:dynamicLinkingDescriptor:error:");
|
|
1399
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_error_,
|
|
1400
|
+
"newRenderPipelineStateWithDescriptor:error:");
|
|
1401
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_options_completionHandler_,
|
|
1402
|
+
"newRenderPipelineStateWithDescriptor:options:completionHandler:");
|
|
1403
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithDescriptor_options_reflection_error_,
|
|
1404
|
+
"newRenderPipelineStateWithDescriptor:options:reflection:error:");
|
|
1405
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithMeshDescriptor_options_completionHandler_,
|
|
1406
|
+
"newRenderPipelineStateWithMeshDescriptor:options:completionHandler:");
|
|
1407
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithMeshDescriptor_options_reflection_error_,
|
|
1408
|
+
"newRenderPipelineStateWithMeshDescriptor:options:reflection:error:");
|
|
1409
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithTileDescriptor_options_completionHandler_,
|
|
1410
|
+
"newRenderPipelineStateWithTileDescriptor:options:completionHandler:");
|
|
1411
|
+
_MTL_PRIVATE_DEF_SEL(newRenderPipelineStateWithTileDescriptor_options_reflection_error_,
|
|
1412
|
+
"newRenderPipelineStateWithTileDescriptor:options:reflection:error:");
|
|
1413
|
+
_MTL_PRIVATE_DEF_SEL(newResidencySetWithDescriptor_error_,
|
|
1414
|
+
"newResidencySetWithDescriptor:error:");
|
|
1415
|
+
_MTL_PRIVATE_DEF_SEL(newSamplerStateWithDescriptor_,
|
|
1416
|
+
"newSamplerStateWithDescriptor:");
|
|
1417
|
+
_MTL_PRIVATE_DEF_SEL(newScratchBufferWithMinimumSize_,
|
|
1418
|
+
"newScratchBufferWithMinimumSize:");
|
|
1419
|
+
_MTL_PRIVATE_DEF_SEL(newSharedEvent,
|
|
1420
|
+
"newSharedEvent");
|
|
1421
|
+
_MTL_PRIVATE_DEF_SEL(newSharedEventHandle,
|
|
1422
|
+
"newSharedEventHandle");
|
|
1423
|
+
_MTL_PRIVATE_DEF_SEL(newSharedEventWithHandle_,
|
|
1424
|
+
"newSharedEventWithHandle:");
|
|
1425
|
+
_MTL_PRIVATE_DEF_SEL(newSharedTextureHandle,
|
|
1426
|
+
"newSharedTextureHandle");
|
|
1427
|
+
_MTL_PRIVATE_DEF_SEL(newSharedTextureWithDescriptor_,
|
|
1428
|
+
"newSharedTextureWithDescriptor:");
|
|
1429
|
+
_MTL_PRIVATE_DEF_SEL(newSharedTextureWithHandle_,
|
|
1430
|
+
"newSharedTextureWithHandle:");
|
|
1431
|
+
_MTL_PRIVATE_DEF_SEL(newTensorWithDescriptor_error_,
|
|
1432
|
+
"newTensorWithDescriptor:error:");
|
|
1433
|
+
_MTL_PRIVATE_DEF_SEL(newTensorWithDescriptor_offset_error_,
|
|
1434
|
+
"newTensorWithDescriptor:offset:error:");
|
|
1435
|
+
_MTL_PRIVATE_DEF_SEL(newTextureViewPoolWithDescriptor_error_,
|
|
1436
|
+
"newTextureViewPoolWithDescriptor:error:");
|
|
1437
|
+
_MTL_PRIVATE_DEF_SEL(newTextureViewWithDescriptor_,
|
|
1438
|
+
"newTextureViewWithDescriptor:");
|
|
1439
|
+
_MTL_PRIVATE_DEF_SEL(newTextureViewWithPixelFormat_,
|
|
1440
|
+
"newTextureViewWithPixelFormat:");
|
|
1441
|
+
_MTL_PRIVATE_DEF_SEL(newTextureViewWithPixelFormat_textureType_levels_slices_,
|
|
1442
|
+
"newTextureViewWithPixelFormat:textureType:levels:slices:");
|
|
1443
|
+
_MTL_PRIVATE_DEF_SEL(newTextureViewWithPixelFormat_textureType_levels_slices_swizzle_,
|
|
1444
|
+
"newTextureViewWithPixelFormat:textureType:levels:slices:swizzle:");
|
|
1445
|
+
_MTL_PRIVATE_DEF_SEL(newTextureWithDescriptor_,
|
|
1446
|
+
"newTextureWithDescriptor:");
|
|
1447
|
+
_MTL_PRIVATE_DEF_SEL(newTextureWithDescriptor_iosurface_plane_,
|
|
1448
|
+
"newTextureWithDescriptor:iosurface:plane:");
|
|
1449
|
+
_MTL_PRIVATE_DEF_SEL(newTextureWithDescriptor_offset_,
|
|
1450
|
+
"newTextureWithDescriptor:offset:");
|
|
1451
|
+
_MTL_PRIVATE_DEF_SEL(newTextureWithDescriptor_offset_bytesPerRow_,
|
|
1452
|
+
"newTextureWithDescriptor:offset:bytesPerRow:");
|
|
1453
|
+
_MTL_PRIVATE_DEF_SEL(newVisibleFunctionTableWithDescriptor_,
|
|
1454
|
+
"newVisibleFunctionTableWithDescriptor:");
|
|
1455
|
+
_MTL_PRIVATE_DEF_SEL(newVisibleFunctionTableWithDescriptor_stage_,
|
|
1456
|
+
"newVisibleFunctionTableWithDescriptor:stage:");
|
|
1457
|
+
_MTL_PRIVATE_DEF_SEL(nodes,
|
|
1458
|
+
"nodes");
|
|
1459
|
+
_MTL_PRIVATE_DEF_SEL(normalizedCoordinates,
|
|
1460
|
+
"normalizedCoordinates");
|
|
1461
|
+
_MTL_PRIVATE_DEF_SEL(notifyListener_atValue_block_,
|
|
1462
|
+
"notifyListener:atValue:block:");
|
|
1463
|
+
_MTL_PRIVATE_DEF_SEL(objectAdditionalBinaryFunctions,
|
|
1464
|
+
"objectAdditionalBinaryFunctions");
|
|
1465
|
+
_MTL_PRIVATE_DEF_SEL(objectAtIndexedSubscript_,
|
|
1466
|
+
"objectAtIndexedSubscript:");
|
|
1467
|
+
_MTL_PRIVATE_DEF_SEL(objectBindings,
|
|
1468
|
+
"objectBindings");
|
|
1469
|
+
_MTL_PRIVATE_DEF_SEL(objectBuffers,
|
|
1470
|
+
"objectBuffers");
|
|
1471
|
+
_MTL_PRIVATE_DEF_SEL(objectFunction,
|
|
1472
|
+
"objectFunction");
|
|
1473
|
+
_MTL_PRIVATE_DEF_SEL(objectFunctionDescriptor,
|
|
1474
|
+
"objectFunctionDescriptor");
|
|
1475
|
+
_MTL_PRIVATE_DEF_SEL(objectLinkedFunctions,
|
|
1476
|
+
"objectLinkedFunctions");
|
|
1477
|
+
_MTL_PRIVATE_DEF_SEL(objectLinkingDescriptor,
|
|
1478
|
+
"objectLinkingDescriptor");
|
|
1479
|
+
_MTL_PRIVATE_DEF_SEL(objectPayloadAlignment,
|
|
1480
|
+
"objectPayloadAlignment");
|
|
1481
|
+
_MTL_PRIVATE_DEF_SEL(objectPayloadDataSize,
|
|
1482
|
+
"objectPayloadDataSize");
|
|
1483
|
+
_MTL_PRIVATE_DEF_SEL(objectStaticLinkingDescriptor,
|
|
1484
|
+
"objectStaticLinkingDescriptor");
|
|
1485
|
+
_MTL_PRIVATE_DEF_SEL(objectThreadExecutionWidth,
|
|
1486
|
+
"objectThreadExecutionWidth");
|
|
1487
|
+
_MTL_PRIVATE_DEF_SEL(objectThreadgroupSizeIsMultipleOfThreadExecutionWidth,
|
|
1488
|
+
"objectThreadgroupSizeIsMultipleOfThreadExecutionWidth");
|
|
1489
|
+
_MTL_PRIVATE_DEF_SEL(offset,
|
|
1490
|
+
"offset");
|
|
1491
|
+
_MTL_PRIVATE_DEF_SEL(opaque,
|
|
1492
|
+
"opaque");
|
|
1493
|
+
_MTL_PRIVATE_DEF_SEL(optimizationLevel,
|
|
1494
|
+
"optimizationLevel");
|
|
1495
|
+
_MTL_PRIVATE_DEF_SEL(optimizeContentsForCPUAccess_,
|
|
1496
|
+
"optimizeContentsForCPUAccess:");
|
|
1497
|
+
_MTL_PRIVATE_DEF_SEL(optimizeContentsForCPUAccess_slice_level_,
|
|
1498
|
+
"optimizeContentsForCPUAccess:slice:level:");
|
|
1499
|
+
_MTL_PRIVATE_DEF_SEL(optimizeContentsForGPUAccess_,
|
|
1500
|
+
"optimizeContentsForGPUAccess:");
|
|
1501
|
+
_MTL_PRIVATE_DEF_SEL(optimizeContentsForGPUAccess_slice_level_,
|
|
1502
|
+
"optimizeContentsForGPUAccess:slice:level:");
|
|
1503
|
+
_MTL_PRIVATE_DEF_SEL(optimizeIndirectCommandBuffer_withRange_,
|
|
1504
|
+
"optimizeIndirectCommandBuffer:withRange:");
|
|
1505
|
+
_MTL_PRIVATE_DEF_SEL(options,
|
|
1506
|
+
"options");
|
|
1507
|
+
_MTL_PRIVATE_DEF_SEL(outputNode,
|
|
1508
|
+
"outputNode");
|
|
1509
|
+
_MTL_PRIVATE_DEF_SEL(outputURL,
|
|
1510
|
+
"outputURL");
|
|
1511
|
+
_MTL_PRIVATE_DEF_SEL(parallelRenderCommandEncoderWithDescriptor_,
|
|
1512
|
+
"parallelRenderCommandEncoderWithDescriptor:");
|
|
1513
|
+
_MTL_PRIVATE_DEF_SEL(parameterBufferSizeAndAlign,
|
|
1514
|
+
"parameterBufferSizeAndAlign");
|
|
1515
|
+
_MTL_PRIVATE_DEF_SEL(parentRelativeLevel,
|
|
1516
|
+
"parentRelativeLevel");
|
|
1517
|
+
_MTL_PRIVATE_DEF_SEL(parentRelativeSlice,
|
|
1518
|
+
"parentRelativeSlice");
|
|
1519
|
+
_MTL_PRIVATE_DEF_SEL(parentTexture,
|
|
1520
|
+
"parentTexture");
|
|
1521
|
+
_MTL_PRIVATE_DEF_SEL(patchControlPointCount,
|
|
1522
|
+
"patchControlPointCount");
|
|
1523
|
+
_MTL_PRIVATE_DEF_SEL(patchType,
|
|
1524
|
+
"patchType");
|
|
1525
|
+
_MTL_PRIVATE_DEF_SEL(payloadMemoryLength,
|
|
1526
|
+
"payloadMemoryLength");
|
|
1527
|
+
_MTL_PRIVATE_DEF_SEL(peerCount,
|
|
1528
|
+
"peerCount");
|
|
1529
|
+
_MTL_PRIVATE_DEF_SEL(peerGroupID,
|
|
1530
|
+
"peerGroupID");
|
|
1531
|
+
_MTL_PRIVATE_DEF_SEL(peerIndex,
|
|
1532
|
+
"peerIndex");
|
|
1533
|
+
_MTL_PRIVATE_DEF_SEL(physicalGranularity,
|
|
1534
|
+
"physicalGranularity");
|
|
1535
|
+
_MTL_PRIVATE_DEF_SEL(physicalSizeForLayer_,
|
|
1536
|
+
"physicalSizeForLayer:");
|
|
1537
|
+
_MTL_PRIVATE_DEF_SEL(pipelineDataSetSerializer,
|
|
1538
|
+
"pipelineDataSetSerializer");
|
|
1539
|
+
_MTL_PRIVATE_DEF_SEL(pixelFormat,
|
|
1540
|
+
"pixelFormat");
|
|
1541
|
+
_MTL_PRIVATE_DEF_SEL(placementSparsePageSize,
|
|
1542
|
+
"placementSparsePageSize");
|
|
1543
|
+
_MTL_PRIVATE_DEF_SEL(pointerType,
|
|
1544
|
+
"pointerType");
|
|
1545
|
+
_MTL_PRIVATE_DEF_SEL(popDebugGroup,
|
|
1546
|
+
"popDebugGroup");
|
|
1547
|
+
_MTL_PRIVATE_DEF_SEL(preloadedLibraries,
|
|
1548
|
+
"preloadedLibraries");
|
|
1549
|
+
_MTL_PRIVATE_DEF_SEL(preprocessorMacros,
|
|
1550
|
+
"preprocessorMacros");
|
|
1551
|
+
_MTL_PRIVATE_DEF_SEL(present,
|
|
1552
|
+
"present");
|
|
1553
|
+
_MTL_PRIVATE_DEF_SEL(presentAfterMinimumDuration_,
|
|
1554
|
+
"presentAfterMinimumDuration:");
|
|
1555
|
+
_MTL_PRIVATE_DEF_SEL(presentAtTime_,
|
|
1556
|
+
"presentAtTime:");
|
|
1557
|
+
_MTL_PRIVATE_DEF_SEL(presentDrawable_,
|
|
1558
|
+
"presentDrawable:");
|
|
1559
|
+
_MTL_PRIVATE_DEF_SEL(presentDrawable_afterMinimumDuration_,
|
|
1560
|
+
"presentDrawable:afterMinimumDuration:");
|
|
1561
|
+
_MTL_PRIVATE_DEF_SEL(presentDrawable_atTime_,
|
|
1562
|
+
"presentDrawable:atTime:");
|
|
1563
|
+
_MTL_PRIVATE_DEF_SEL(presentedTime,
|
|
1564
|
+
"presentedTime");
|
|
1565
|
+
_MTL_PRIVATE_DEF_SEL(preserveInvariance,
|
|
1566
|
+
"preserveInvariance");
|
|
1567
|
+
_MTL_PRIVATE_DEF_SEL(primitiveDataBuffer,
|
|
1568
|
+
"primitiveDataBuffer");
|
|
1569
|
+
_MTL_PRIVATE_DEF_SEL(primitiveDataBufferOffset,
|
|
1570
|
+
"primitiveDataBufferOffset");
|
|
1571
|
+
_MTL_PRIVATE_DEF_SEL(primitiveDataElementSize,
|
|
1572
|
+
"primitiveDataElementSize");
|
|
1573
|
+
_MTL_PRIVATE_DEF_SEL(primitiveDataStride,
|
|
1574
|
+
"primitiveDataStride");
|
|
1575
|
+
_MTL_PRIVATE_DEF_SEL(priority,
|
|
1576
|
+
"priority");
|
|
1577
|
+
_MTL_PRIVATE_DEF_SEL(privateFunctionDescriptors,
|
|
1578
|
+
"privateFunctionDescriptors");
|
|
1579
|
+
_MTL_PRIVATE_DEF_SEL(privateFunctions,
|
|
1580
|
+
"privateFunctions");
|
|
1581
|
+
_MTL_PRIVATE_DEF_SEL(pushDebugGroup_,
|
|
1582
|
+
"pushDebugGroup:");
|
|
1583
|
+
_MTL_PRIVATE_DEF_SEL(queryTimestampFrequency,
|
|
1584
|
+
"queryTimestampFrequency");
|
|
1585
|
+
_MTL_PRIVATE_DEF_SEL(rAddressMode,
|
|
1586
|
+
"rAddressMode");
|
|
1587
|
+
_MTL_PRIVATE_DEF_SEL(radiusBuffer,
|
|
1588
|
+
"radiusBuffer");
|
|
1589
|
+
_MTL_PRIVATE_DEF_SEL(radiusBufferOffset,
|
|
1590
|
+
"radiusBufferOffset");
|
|
1591
|
+
_MTL_PRIVATE_DEF_SEL(radiusBuffers,
|
|
1592
|
+
"radiusBuffers");
|
|
1593
|
+
_MTL_PRIVATE_DEF_SEL(radiusFormat,
|
|
1594
|
+
"radiusFormat");
|
|
1595
|
+
_MTL_PRIVATE_DEF_SEL(radiusStride,
|
|
1596
|
+
"radiusStride");
|
|
1597
|
+
_MTL_PRIVATE_DEF_SEL(rank,
|
|
1598
|
+
"rank");
|
|
1599
|
+
_MTL_PRIVATE_DEF_SEL(rasterSampleCount,
|
|
1600
|
+
"rasterSampleCount");
|
|
1601
|
+
_MTL_PRIVATE_DEF_SEL(rasterizationRateMap,
|
|
1602
|
+
"rasterizationRateMap");
|
|
1603
|
+
_MTL_PRIVATE_DEF_SEL(rasterizationRateMapDescriptorWithScreenSize_,
|
|
1604
|
+
"rasterizationRateMapDescriptorWithScreenSize:");
|
|
1605
|
+
_MTL_PRIVATE_DEF_SEL(rasterizationRateMapDescriptorWithScreenSize_layer_,
|
|
1606
|
+
"rasterizationRateMapDescriptorWithScreenSize:layer:");
|
|
1607
|
+
_MTL_PRIVATE_DEF_SEL(rasterizationRateMapDescriptorWithScreenSize_layerCount_layers_,
|
|
1608
|
+
"rasterizationRateMapDescriptorWithScreenSize:layerCount:layers:");
|
|
1609
|
+
_MTL_PRIVATE_DEF_SEL(readMask,
|
|
1610
|
+
"readMask");
|
|
1611
|
+
_MTL_PRIVATE_DEF_SEL(readWriteTextureSupport,
|
|
1612
|
+
"readWriteTextureSupport");
|
|
1613
|
+
_MTL_PRIVATE_DEF_SEL(recommendedMaxWorkingSetSize,
|
|
1614
|
+
"recommendedMaxWorkingSetSize");
|
|
1615
|
+
_MTL_PRIVATE_DEF_SEL(reductionMode,
|
|
1616
|
+
"reductionMode");
|
|
1617
|
+
_MTL_PRIVATE_DEF_SEL(refitAccelerationStructure_descriptor_destination_scratchBuffer_,
|
|
1618
|
+
"refitAccelerationStructure:descriptor:destination:scratchBuffer:");
|
|
1619
|
+
_MTL_PRIVATE_DEF_SEL(refitAccelerationStructure_descriptor_destination_scratchBuffer_options_,
|
|
1620
|
+
"refitAccelerationStructure:descriptor:destination:scratchBuffer:options:");
|
|
1621
|
+
_MTL_PRIVATE_DEF_SEL(refitAccelerationStructure_descriptor_destination_scratchBuffer_scratchBufferOffset_,
|
|
1622
|
+
"refitAccelerationStructure:descriptor:destination:scratchBuffer:scratchBufferOffset:");
|
|
1623
|
+
_MTL_PRIVATE_DEF_SEL(refitAccelerationStructure_descriptor_destination_scratchBuffer_scratchBufferOffset_options_,
|
|
1624
|
+
"refitAccelerationStructure:descriptor:destination:scratchBuffer:scratchBufferOffset:options:");
|
|
1625
|
+
_MTL_PRIVATE_DEF_SEL(reflection,
|
|
1626
|
+
"reflection");
|
|
1627
|
+
_MTL_PRIVATE_DEF_SEL(reflectionForFunctionWithName_,
|
|
1628
|
+
"reflectionForFunctionWithName:");
|
|
1629
|
+
_MTL_PRIVATE_DEF_SEL(registryID,
|
|
1630
|
+
"registryID");
|
|
1631
|
+
_MTL_PRIVATE_DEF_SEL(remoteStorageBuffer,
|
|
1632
|
+
"remoteStorageBuffer");
|
|
1633
|
+
_MTL_PRIVATE_DEF_SEL(remoteStorageTexture,
|
|
1634
|
+
"remoteStorageTexture");
|
|
1635
|
+
_MTL_PRIVATE_DEF_SEL(removeAllAllocations,
|
|
1636
|
+
"removeAllAllocations");
|
|
1637
|
+
_MTL_PRIVATE_DEF_SEL(removeAllDebugMarkers,
|
|
1638
|
+
"removeAllDebugMarkers");
|
|
1639
|
+
_MTL_PRIVATE_DEF_SEL(removeAllocation_,
|
|
1640
|
+
"removeAllocation:");
|
|
1641
|
+
_MTL_PRIVATE_DEF_SEL(removeAllocations_count_,
|
|
1642
|
+
"removeAllocations:count:");
|
|
1643
|
+
_MTL_PRIVATE_DEF_SEL(removeResidencySet_,
|
|
1644
|
+
"removeResidencySet:");
|
|
1645
|
+
_MTL_PRIVATE_DEF_SEL(removeResidencySets_count_,
|
|
1646
|
+
"removeResidencySets:count:");
|
|
1647
|
+
_MTL_PRIVATE_DEF_SEL(renderCommandEncoder,
|
|
1648
|
+
"renderCommandEncoder");
|
|
1649
|
+
_MTL_PRIVATE_DEF_SEL(renderCommandEncoderWithDescriptor_,
|
|
1650
|
+
"renderCommandEncoderWithDescriptor:");
|
|
1651
|
+
_MTL_PRIVATE_DEF_SEL(renderCommandEncoderWithDescriptor_options_,
|
|
1652
|
+
"renderCommandEncoderWithDescriptor:options:");
|
|
1653
|
+
_MTL_PRIVATE_DEF_SEL(renderPassDescriptor,
|
|
1654
|
+
"renderPassDescriptor");
|
|
1655
|
+
_MTL_PRIVATE_DEF_SEL(renderTargetArrayLength,
|
|
1656
|
+
"renderTargetArrayLength");
|
|
1657
|
+
_MTL_PRIVATE_DEF_SEL(renderTargetHeight,
|
|
1658
|
+
"renderTargetHeight");
|
|
1659
|
+
_MTL_PRIVATE_DEF_SEL(renderTargetWidth,
|
|
1660
|
+
"renderTargetWidth");
|
|
1661
|
+
_MTL_PRIVATE_DEF_SEL(replaceRegion_mipmapLevel_slice_withBytes_bytesPerRow_bytesPerImage_,
|
|
1662
|
+
"replaceRegion:mipmapLevel:slice:withBytes:bytesPerRow:bytesPerImage:");
|
|
1663
|
+
_MTL_PRIVATE_DEF_SEL(replaceRegion_mipmapLevel_withBytes_bytesPerRow_,
|
|
1664
|
+
"replaceRegion:mipmapLevel:withBytes:bytesPerRow:");
|
|
1665
|
+
_MTL_PRIVATE_DEF_SEL(replaceSliceOrigin_sliceDimensions_withBytes_strides_,
|
|
1666
|
+
"replaceSliceOrigin:sliceDimensions:withBytes:strides:");
|
|
1667
|
+
_MTL_PRIVATE_DEF_SEL(requestResidency,
|
|
1668
|
+
"requestResidency");
|
|
1669
|
+
_MTL_PRIVATE_DEF_SEL(required,
|
|
1670
|
+
"required");
|
|
1671
|
+
_MTL_PRIVATE_DEF_SEL(requiredThreadsPerMeshThreadgroup,
|
|
1672
|
+
"requiredThreadsPerMeshThreadgroup");
|
|
1673
|
+
_MTL_PRIVATE_DEF_SEL(requiredThreadsPerObjectThreadgroup,
|
|
1674
|
+
"requiredThreadsPerObjectThreadgroup");
|
|
1675
|
+
_MTL_PRIVATE_DEF_SEL(requiredThreadsPerThreadgroup,
|
|
1676
|
+
"requiredThreadsPerThreadgroup");
|
|
1677
|
+
_MTL_PRIVATE_DEF_SEL(requiredThreadsPerTileThreadgroup,
|
|
1678
|
+
"requiredThreadsPerTileThreadgroup");
|
|
1679
|
+
_MTL_PRIVATE_DEF_SEL(reset,
|
|
1680
|
+
"reset");
|
|
1681
|
+
_MTL_PRIVATE_DEF_SEL(resetCommandsInBuffer_withRange_,
|
|
1682
|
+
"resetCommandsInBuffer:withRange:");
|
|
1683
|
+
_MTL_PRIVATE_DEF_SEL(resetTextureAccessCounters_region_mipLevel_slice_,
|
|
1684
|
+
"resetTextureAccessCounters:region:mipLevel:slice:");
|
|
1685
|
+
_MTL_PRIVATE_DEF_SEL(resetWithRange_,
|
|
1686
|
+
"resetWithRange:");
|
|
1687
|
+
_MTL_PRIVATE_DEF_SEL(resolveCounterHeap_withRange_intoBuffer_waitFence_updateFence_,
|
|
1688
|
+
"resolveCounterHeap:withRange:intoBuffer:waitFence:updateFence:");
|
|
1689
|
+
_MTL_PRIVATE_DEF_SEL(resolveCounterRange_,
|
|
1690
|
+
"resolveCounterRange:");
|
|
1691
|
+
_MTL_PRIVATE_DEF_SEL(resolveCounters_inRange_destinationBuffer_destinationOffset_,
|
|
1692
|
+
"resolveCounters:inRange:destinationBuffer:destinationOffset:");
|
|
1693
|
+
_MTL_PRIVATE_DEF_SEL(resolveDepthPlane,
|
|
1694
|
+
"resolveDepthPlane");
|
|
1695
|
+
_MTL_PRIVATE_DEF_SEL(resolveLevel,
|
|
1696
|
+
"resolveLevel");
|
|
1697
|
+
_MTL_PRIVATE_DEF_SEL(resolveSlice,
|
|
1698
|
+
"resolveSlice");
|
|
1699
|
+
_MTL_PRIVATE_DEF_SEL(resolveTexture,
|
|
1700
|
+
"resolveTexture");
|
|
1701
|
+
_MTL_PRIVATE_DEF_SEL(resourceOptions,
|
|
1702
|
+
"resourceOptions");
|
|
1703
|
+
_MTL_PRIVATE_DEF_SEL(resourceStateCommandEncoder,
|
|
1704
|
+
"resourceStateCommandEncoder");
|
|
1705
|
+
_MTL_PRIVATE_DEF_SEL(resourceStateCommandEncoderWithDescriptor_,
|
|
1706
|
+
"resourceStateCommandEncoderWithDescriptor:");
|
|
1707
|
+
_MTL_PRIVATE_DEF_SEL(resourceStatePassDescriptor,
|
|
1708
|
+
"resourceStatePassDescriptor");
|
|
1709
|
+
_MTL_PRIVATE_DEF_SEL(resourceViewCount,
|
|
1710
|
+
"resourceViewCount");
|
|
1711
|
+
_MTL_PRIVATE_DEF_SEL(retainedReferences,
|
|
1712
|
+
"retainedReferences");
|
|
1713
|
+
_MTL_PRIVATE_DEF_SEL(rgbBlendOperation,
|
|
1714
|
+
"rgbBlendOperation");
|
|
1715
|
+
_MTL_PRIVATE_DEF_SEL(rootResource,
|
|
1716
|
+
"rootResource");
|
|
1717
|
+
_MTL_PRIVATE_DEF_SEL(sAddressMode,
|
|
1718
|
+
"sAddressMode");
|
|
1719
|
+
_MTL_PRIVATE_DEF_SEL(sampleBuffer,
|
|
1720
|
+
"sampleBuffer");
|
|
1721
|
+
_MTL_PRIVATE_DEF_SEL(sampleBufferAttachments,
|
|
1722
|
+
"sampleBufferAttachments");
|
|
1723
|
+
_MTL_PRIVATE_DEF_SEL(sampleCount,
|
|
1724
|
+
"sampleCount");
|
|
1725
|
+
_MTL_PRIVATE_DEF_SEL(sampleCountersInBuffer_atSampleIndex_withBarrier_,
|
|
1726
|
+
"sampleCountersInBuffer:atSampleIndex:withBarrier:");
|
|
1727
|
+
_MTL_PRIVATE_DEF_SEL(sampleTimestamps_gpuTimestamp_,
|
|
1728
|
+
"sampleTimestamps:gpuTimestamp:");
|
|
1729
|
+
_MTL_PRIVATE_DEF_SEL(scratchBufferAllocator,
|
|
1730
|
+
"scratchBufferAllocator");
|
|
1731
|
+
_MTL_PRIVATE_DEF_SEL(screenSize,
|
|
1732
|
+
"screenSize");
|
|
1733
|
+
_MTL_PRIVATE_DEF_SEL(segmentControlPointCount,
|
|
1734
|
+
"segmentControlPointCount");
|
|
1735
|
+
_MTL_PRIVATE_DEF_SEL(segmentCount,
|
|
1736
|
+
"segmentCount");
|
|
1737
|
+
_MTL_PRIVATE_DEF_SEL(serializeAsArchiveAndFlushToURL_error_,
|
|
1738
|
+
"serializeAsArchiveAndFlushToURL:error:");
|
|
1739
|
+
_MTL_PRIVATE_DEF_SEL(serializeAsPipelinesScriptWithError_,
|
|
1740
|
+
"serializeAsPipelinesScriptWithError:");
|
|
1741
|
+
_MTL_PRIVATE_DEF_SEL(serializeToURL_error_,
|
|
1742
|
+
"serializeToURL:error:");
|
|
1743
|
+
_MTL_PRIVATE_DEF_SEL(setAccelerationStructure_atBufferIndex_,
|
|
1744
|
+
"setAccelerationStructure:atBufferIndex:");
|
|
1745
|
+
_MTL_PRIVATE_DEF_SEL(setAccelerationStructure_atIndex_,
|
|
1746
|
+
"setAccelerationStructure:atIndex:");
|
|
1747
|
+
_MTL_PRIVATE_DEF_SEL(setAccess_,
|
|
1748
|
+
"setAccess:");
|
|
1749
|
+
_MTL_PRIVATE_DEF_SEL(setAddress_atIndex_,
|
|
1750
|
+
"setAddress:atIndex:");
|
|
1751
|
+
_MTL_PRIVATE_DEF_SEL(setAddress_attributeStride_atIndex_,
|
|
1752
|
+
"setAddress:attributeStride:atIndex:");
|
|
1753
|
+
_MTL_PRIVATE_DEF_SEL(setAllowDuplicateIntersectionFunctionInvocation_,
|
|
1754
|
+
"setAllowDuplicateIntersectionFunctionInvocation:");
|
|
1755
|
+
_MTL_PRIVATE_DEF_SEL(setAllowGPUOptimizedContents_,
|
|
1756
|
+
"setAllowGPUOptimizedContents:");
|
|
1757
|
+
_MTL_PRIVATE_DEF_SEL(setAllowReferencingUndefinedSymbols_,
|
|
1758
|
+
"setAllowReferencingUndefinedSymbols:");
|
|
1759
|
+
_MTL_PRIVATE_DEF_SEL(setAlphaBlendOperation_,
|
|
1760
|
+
"setAlphaBlendOperation:");
|
|
1761
|
+
_MTL_PRIVATE_DEF_SEL(setAlphaToCoverageEnabled_,
|
|
1762
|
+
"setAlphaToCoverageEnabled:");
|
|
1763
|
+
_MTL_PRIVATE_DEF_SEL(setAlphaToCoverageState_,
|
|
1764
|
+
"setAlphaToCoverageState:");
|
|
1765
|
+
_MTL_PRIVATE_DEF_SEL(setAlphaToOneEnabled_,
|
|
1766
|
+
"setAlphaToOneEnabled:");
|
|
1767
|
+
_MTL_PRIVATE_DEF_SEL(setAlphaToOneState_,
|
|
1768
|
+
"setAlphaToOneState:");
|
|
1769
|
+
_MTL_PRIVATE_DEF_SEL(setArgumentBuffer_offset_,
|
|
1770
|
+
"setArgumentBuffer:offset:");
|
|
1771
|
+
_MTL_PRIVATE_DEF_SEL(setArgumentBuffer_startOffset_arrayElement_,
|
|
1772
|
+
"setArgumentBuffer:startOffset:arrayElement:");
|
|
1773
|
+
_MTL_PRIVATE_DEF_SEL(setArgumentIndex_,
|
|
1774
|
+
"setArgumentIndex:");
|
|
1775
|
+
_MTL_PRIVATE_DEF_SEL(setArgumentTable_,
|
|
1776
|
+
"setArgumentTable:");
|
|
1777
|
+
_MTL_PRIVATE_DEF_SEL(setArgumentTable_atStages_,
|
|
1778
|
+
"setArgumentTable:atStages:");
|
|
1779
|
+
_MTL_PRIVATE_DEF_SEL(setArguments_,
|
|
1780
|
+
"setArguments:");
|
|
1781
|
+
_MTL_PRIVATE_DEF_SEL(setArrayLength_,
|
|
1782
|
+
"setArrayLength:");
|
|
1783
|
+
_MTL_PRIVATE_DEF_SEL(setAttributes_,
|
|
1784
|
+
"setAttributes:");
|
|
1785
|
+
_MTL_PRIVATE_DEF_SEL(setBackFaceStencil_,
|
|
1786
|
+
"setBackFaceStencil:");
|
|
1787
|
+
_MTL_PRIVATE_DEF_SEL(setBarrier,
|
|
1788
|
+
"setBarrier");
|
|
1789
|
+
_MTL_PRIVATE_DEF_SEL(setBinaryArchives_,
|
|
1790
|
+
"setBinaryArchives:");
|
|
1791
|
+
_MTL_PRIVATE_DEF_SEL(setBinaryFunctions_,
|
|
1792
|
+
"setBinaryFunctions:");
|
|
1793
|
+
_MTL_PRIVATE_DEF_SEL(setBinaryLinkedFunctions_,
|
|
1794
|
+
"setBinaryLinkedFunctions:");
|
|
1795
|
+
_MTL_PRIVATE_DEF_SEL(setBlendColorRed_green_blue_alpha_,
|
|
1796
|
+
"setBlendColorRed:green:blue:alpha:");
|
|
1797
|
+
_MTL_PRIVATE_DEF_SEL(setBlendingEnabled_,
|
|
1798
|
+
"setBlendingEnabled:");
|
|
1799
|
+
_MTL_PRIVATE_DEF_SEL(setBlendingState_,
|
|
1800
|
+
"setBlendingState:");
|
|
1801
|
+
_MTL_PRIVATE_DEF_SEL(setBorderColor_,
|
|
1802
|
+
"setBorderColor:");
|
|
1803
|
+
_MTL_PRIVATE_DEF_SEL(setBoundingBoxBuffer_,
|
|
1804
|
+
"setBoundingBoxBuffer:");
|
|
1805
|
+
_MTL_PRIVATE_DEF_SEL(setBoundingBoxBufferOffset_,
|
|
1806
|
+
"setBoundingBoxBufferOffset:");
|
|
1807
|
+
_MTL_PRIVATE_DEF_SEL(setBoundingBoxBuffers_,
|
|
1808
|
+
"setBoundingBoxBuffers:");
|
|
1809
|
+
_MTL_PRIVATE_DEF_SEL(setBoundingBoxCount_,
|
|
1810
|
+
"setBoundingBoxCount:");
|
|
1811
|
+
_MTL_PRIVATE_DEF_SEL(setBoundingBoxStride_,
|
|
1812
|
+
"setBoundingBoxStride:");
|
|
1813
|
+
_MTL_PRIVATE_DEF_SEL(setBuffer_,
|
|
1814
|
+
"setBuffer:");
|
|
1815
|
+
_MTL_PRIVATE_DEF_SEL(setBuffer_offset_atIndex_,
|
|
1816
|
+
"setBuffer:offset:atIndex:");
|
|
1817
|
+
_MTL_PRIVATE_DEF_SEL(setBuffer_offset_attributeStride_atIndex_,
|
|
1818
|
+
"setBuffer:offset:attributeStride:atIndex:");
|
|
1819
|
+
_MTL_PRIVATE_DEF_SEL(setBufferIndex_,
|
|
1820
|
+
"setBufferIndex:");
|
|
1821
|
+
_MTL_PRIVATE_DEF_SEL(setBufferOffset_atIndex_,
|
|
1822
|
+
"setBufferOffset:atIndex:");
|
|
1823
|
+
_MTL_PRIVATE_DEF_SEL(setBufferOffset_attributeStride_atIndex_,
|
|
1824
|
+
"setBufferOffset:attributeStride:atIndex:");
|
|
1825
|
+
_MTL_PRIVATE_DEF_SEL(setBufferSize_,
|
|
1826
|
+
"setBufferSize:");
|
|
1827
|
+
_MTL_PRIVATE_DEF_SEL(setBuffers_offsets_attributeStrides_withRange_,
|
|
1828
|
+
"setBuffers:offsets:attributeStrides:withRange:");
|
|
1829
|
+
_MTL_PRIVATE_DEF_SEL(setBuffers_offsets_withRange_,
|
|
1830
|
+
"setBuffers:offsets:withRange:");
|
|
1831
|
+
_MTL_PRIVATE_DEF_SEL(setBytes_length_atIndex_,
|
|
1832
|
+
"setBytes:length:atIndex:");
|
|
1833
|
+
_MTL_PRIVATE_DEF_SEL(setBytes_length_attributeStride_atIndex_,
|
|
1834
|
+
"setBytes:length:attributeStride:atIndex:");
|
|
1835
|
+
_MTL_PRIVATE_DEF_SEL(setCaptureObject_,
|
|
1836
|
+
"setCaptureObject:");
|
|
1837
|
+
_MTL_PRIVATE_DEF_SEL(setClearColor_,
|
|
1838
|
+
"setClearColor:");
|
|
1839
|
+
_MTL_PRIVATE_DEF_SEL(setClearDepth_,
|
|
1840
|
+
"setClearDepth:");
|
|
1841
|
+
_MTL_PRIVATE_DEF_SEL(setClearStencil_,
|
|
1842
|
+
"setClearStencil:");
|
|
1843
|
+
_MTL_PRIVATE_DEF_SEL(setColorAttachmentMap_,
|
|
1844
|
+
"setColorAttachmentMap:");
|
|
1845
|
+
_MTL_PRIVATE_DEF_SEL(setColorAttachmentMappingState_,
|
|
1846
|
+
"setColorAttachmentMappingState:");
|
|
1847
|
+
_MTL_PRIVATE_DEF_SEL(setColorStoreAction_atIndex_,
|
|
1848
|
+
"setColorStoreAction:atIndex:");
|
|
1849
|
+
_MTL_PRIVATE_DEF_SEL(setColorStoreActionOptions_atIndex_,
|
|
1850
|
+
"setColorStoreActionOptions:atIndex:");
|
|
1851
|
+
_MTL_PRIVATE_DEF_SEL(setCommandTypes_,
|
|
1852
|
+
"setCommandTypes:");
|
|
1853
|
+
_MTL_PRIVATE_DEF_SEL(setCompareFunction_,
|
|
1854
|
+
"setCompareFunction:");
|
|
1855
|
+
_MTL_PRIVATE_DEF_SEL(setCompileSymbolVisibility_,
|
|
1856
|
+
"setCompileSymbolVisibility:");
|
|
1857
|
+
_MTL_PRIVATE_DEF_SEL(setCompressionType_,
|
|
1858
|
+
"setCompressionType:");
|
|
1859
|
+
_MTL_PRIVATE_DEF_SEL(setComputeFunction_,
|
|
1860
|
+
"setComputeFunction:");
|
|
1861
|
+
_MTL_PRIVATE_DEF_SEL(setComputeFunctionDescriptor_,
|
|
1862
|
+
"setComputeFunctionDescriptor:");
|
|
1863
|
+
_MTL_PRIVATE_DEF_SEL(setComputePipelineState_,
|
|
1864
|
+
"setComputePipelineState:");
|
|
1865
|
+
_MTL_PRIVATE_DEF_SEL(setComputePipelineState_atIndex_,
|
|
1866
|
+
"setComputePipelineState:atIndex:");
|
|
1867
|
+
_MTL_PRIVATE_DEF_SEL(setComputePipelineStates_withRange_,
|
|
1868
|
+
"setComputePipelineStates:withRange:");
|
|
1869
|
+
_MTL_PRIVATE_DEF_SEL(setConfiguration_,
|
|
1870
|
+
"setConfiguration:");
|
|
1871
|
+
_MTL_PRIVATE_DEF_SEL(setConstantBlockAlignment_,
|
|
1872
|
+
"setConstantBlockAlignment:");
|
|
1873
|
+
_MTL_PRIVATE_DEF_SEL(setConstantValue_type_atIndex_,
|
|
1874
|
+
"setConstantValue:type:atIndex:");
|
|
1875
|
+
_MTL_PRIVATE_DEF_SEL(setConstantValue_type_withName_,
|
|
1876
|
+
"setConstantValue:type:withName:");
|
|
1877
|
+
_MTL_PRIVATE_DEF_SEL(setConstantValues_,
|
|
1878
|
+
"setConstantValues:");
|
|
1879
|
+
_MTL_PRIVATE_DEF_SEL(setConstantValues_type_withRange_,
|
|
1880
|
+
"setConstantValues:type:withRange:");
|
|
1881
|
+
_MTL_PRIVATE_DEF_SEL(setControlDependencies_,
|
|
1882
|
+
"setControlDependencies:");
|
|
1883
|
+
_MTL_PRIVATE_DEF_SEL(setControlPointBuffer_,
|
|
1884
|
+
"setControlPointBuffer:");
|
|
1885
|
+
_MTL_PRIVATE_DEF_SEL(setControlPointBufferOffset_,
|
|
1886
|
+
"setControlPointBufferOffset:");
|
|
1887
|
+
_MTL_PRIVATE_DEF_SEL(setControlPointBuffers_,
|
|
1888
|
+
"setControlPointBuffers:");
|
|
1889
|
+
_MTL_PRIVATE_DEF_SEL(setControlPointCount_,
|
|
1890
|
+
"setControlPointCount:");
|
|
1891
|
+
_MTL_PRIVATE_DEF_SEL(setControlPointFormat_,
|
|
1892
|
+
"setControlPointFormat:");
|
|
1893
|
+
_MTL_PRIVATE_DEF_SEL(setControlPointStride_,
|
|
1894
|
+
"setControlPointStride:");
|
|
1895
|
+
_MTL_PRIVATE_DEF_SEL(setCount_,
|
|
1896
|
+
"setCount:");
|
|
1897
|
+
_MTL_PRIVATE_DEF_SEL(setCounterSet_,
|
|
1898
|
+
"setCounterSet:");
|
|
1899
|
+
_MTL_PRIVATE_DEF_SEL(setCpuCacheMode_,
|
|
1900
|
+
"setCpuCacheMode:");
|
|
1901
|
+
_MTL_PRIVATE_DEF_SEL(setCullMode_,
|
|
1902
|
+
"setCullMode:");
|
|
1903
|
+
_MTL_PRIVATE_DEF_SEL(setCurveBasis_,
|
|
1904
|
+
"setCurveBasis:");
|
|
1905
|
+
_MTL_PRIVATE_DEF_SEL(setCurveEndCaps_,
|
|
1906
|
+
"setCurveEndCaps:");
|
|
1907
|
+
_MTL_PRIVATE_DEF_SEL(setCurveType_,
|
|
1908
|
+
"setCurveType:");
|
|
1909
|
+
_MTL_PRIVATE_DEF_SEL(setDataType_,
|
|
1910
|
+
"setDataType:");
|
|
1911
|
+
_MTL_PRIVATE_DEF_SEL(setDefaultCaptureScope_,
|
|
1912
|
+
"setDefaultCaptureScope:");
|
|
1913
|
+
_MTL_PRIVATE_DEF_SEL(setDefaultRasterSampleCount_,
|
|
1914
|
+
"setDefaultRasterSampleCount:");
|
|
1915
|
+
_MTL_PRIVATE_DEF_SEL(setDepth_,
|
|
1916
|
+
"setDepth:");
|
|
1917
|
+
_MTL_PRIVATE_DEF_SEL(setDepthAttachment_,
|
|
1918
|
+
"setDepthAttachment:");
|
|
1919
|
+
_MTL_PRIVATE_DEF_SEL(setDepthAttachmentPixelFormat_,
|
|
1920
|
+
"setDepthAttachmentPixelFormat:");
|
|
1921
|
+
_MTL_PRIVATE_DEF_SEL(setDepthBias_slopeScale_clamp_,
|
|
1922
|
+
"setDepthBias:slopeScale:clamp:");
|
|
1923
|
+
_MTL_PRIVATE_DEF_SEL(setDepthClipMode_,
|
|
1924
|
+
"setDepthClipMode:");
|
|
1925
|
+
_MTL_PRIVATE_DEF_SEL(setDepthCompareFunction_,
|
|
1926
|
+
"setDepthCompareFunction:");
|
|
1927
|
+
_MTL_PRIVATE_DEF_SEL(setDepthFailureOperation_,
|
|
1928
|
+
"setDepthFailureOperation:");
|
|
1929
|
+
_MTL_PRIVATE_DEF_SEL(setDepthPlane_,
|
|
1930
|
+
"setDepthPlane:");
|
|
1931
|
+
_MTL_PRIVATE_DEF_SEL(setDepthResolveFilter_,
|
|
1932
|
+
"setDepthResolveFilter:");
|
|
1933
|
+
_MTL_PRIVATE_DEF_SEL(setDepthStencilPassOperation_,
|
|
1934
|
+
"setDepthStencilPassOperation:");
|
|
1935
|
+
_MTL_PRIVATE_DEF_SEL(setDepthStencilState_,
|
|
1936
|
+
"setDepthStencilState:");
|
|
1937
|
+
_MTL_PRIVATE_DEF_SEL(setDepthStencilState_atIndex_,
|
|
1938
|
+
"setDepthStencilState:atIndex:");
|
|
1939
|
+
_MTL_PRIVATE_DEF_SEL(setDepthStencilStates_withRange_,
|
|
1940
|
+
"setDepthStencilStates:withRange:");
|
|
1941
|
+
_MTL_PRIVATE_DEF_SEL(setDepthStoreAction_,
|
|
1942
|
+
"setDepthStoreAction:");
|
|
1943
|
+
_MTL_PRIVATE_DEF_SEL(setDepthStoreActionOptions_,
|
|
1944
|
+
"setDepthStoreActionOptions:");
|
|
1945
|
+
_MTL_PRIVATE_DEF_SEL(setDepthTestMinBound_maxBound_,
|
|
1946
|
+
"setDepthTestMinBound:maxBound:");
|
|
1947
|
+
_MTL_PRIVATE_DEF_SEL(setDepthWriteEnabled_,
|
|
1948
|
+
"setDepthWriteEnabled:");
|
|
1949
|
+
_MTL_PRIVATE_DEF_SEL(setDestination_,
|
|
1950
|
+
"setDestination:");
|
|
1951
|
+
_MTL_PRIVATE_DEF_SEL(setDestinationAlphaBlendFactor_,
|
|
1952
|
+
"setDestinationAlphaBlendFactor:");
|
|
1953
|
+
_MTL_PRIVATE_DEF_SEL(setDestinationRGBBlendFactor_,
|
|
1954
|
+
"setDestinationRGBBlendFactor:");
|
|
1955
|
+
_MTL_PRIVATE_DEF_SEL(setDimensions_,
|
|
1956
|
+
"setDimensions:");
|
|
1957
|
+
_MTL_PRIVATE_DEF_SEL(setDispatchType_,
|
|
1958
|
+
"setDispatchType:");
|
|
1959
|
+
_MTL_PRIVATE_DEF_SEL(setEnableLogging_,
|
|
1960
|
+
"setEnableLogging:");
|
|
1961
|
+
_MTL_PRIVATE_DEF_SEL(setEndOfEncoderSampleIndex_,
|
|
1962
|
+
"setEndOfEncoderSampleIndex:");
|
|
1963
|
+
_MTL_PRIVATE_DEF_SEL(setEndOfFragmentSampleIndex_,
|
|
1964
|
+
"setEndOfFragmentSampleIndex:");
|
|
1965
|
+
_MTL_PRIVATE_DEF_SEL(setEndOfVertexSampleIndex_,
|
|
1966
|
+
"setEndOfVertexSampleIndex:");
|
|
1967
|
+
_MTL_PRIVATE_DEF_SEL(setErrorOptions_,
|
|
1968
|
+
"setErrorOptions:");
|
|
1969
|
+
_MTL_PRIVATE_DEF_SEL(setFastMathEnabled_,
|
|
1970
|
+
"setFastMathEnabled:");
|
|
1971
|
+
_MTL_PRIVATE_DEF_SEL(setFeedbackQueue_,
|
|
1972
|
+
"setFeedbackQueue:");
|
|
1973
|
+
_MTL_PRIVATE_DEF_SEL(setFormat_,
|
|
1974
|
+
"setFormat:");
|
|
1975
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentAccelerationStructure_atBufferIndex_,
|
|
1976
|
+
"setFragmentAccelerationStructure:atBufferIndex:");
|
|
1977
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentAdditionalBinaryFunctions_,
|
|
1978
|
+
"setFragmentAdditionalBinaryFunctions:");
|
|
1979
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentBuffer_offset_atIndex_,
|
|
1980
|
+
"setFragmentBuffer:offset:atIndex:");
|
|
1981
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentBufferOffset_atIndex_,
|
|
1982
|
+
"setFragmentBufferOffset:atIndex:");
|
|
1983
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentBuffers_offsets_withRange_,
|
|
1984
|
+
"setFragmentBuffers:offsets:withRange:");
|
|
1985
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentBytes_length_atIndex_,
|
|
1986
|
+
"setFragmentBytes:length:atIndex:");
|
|
1987
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentFunction_,
|
|
1988
|
+
"setFragmentFunction:");
|
|
1989
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentFunctionDescriptor_,
|
|
1990
|
+
"setFragmentFunctionDescriptor:");
|
|
1991
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentIntersectionFunctionTable_atBufferIndex_,
|
|
1992
|
+
"setFragmentIntersectionFunctionTable:atBufferIndex:");
|
|
1993
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentIntersectionFunctionTables_withBufferRange_,
|
|
1994
|
+
"setFragmentIntersectionFunctionTables:withBufferRange:");
|
|
1995
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentLinkedFunctions_,
|
|
1996
|
+
"setFragmentLinkedFunctions:");
|
|
1997
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentPreloadedLibraries_,
|
|
1998
|
+
"setFragmentPreloadedLibraries:");
|
|
1999
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentSamplerState_atIndex_,
|
|
2000
|
+
"setFragmentSamplerState:atIndex:");
|
|
2001
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentSamplerState_lodMinClamp_lodMaxClamp_atIndex_,
|
|
2002
|
+
"setFragmentSamplerState:lodMinClamp:lodMaxClamp:atIndex:");
|
|
2003
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentSamplerStates_lodMinClamps_lodMaxClamps_withRange_,
|
|
2004
|
+
"setFragmentSamplerStates:lodMinClamps:lodMaxClamps:withRange:");
|
|
2005
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentSamplerStates_withRange_,
|
|
2006
|
+
"setFragmentSamplerStates:withRange:");
|
|
2007
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentStaticLinkingDescriptor_,
|
|
2008
|
+
"setFragmentStaticLinkingDescriptor:");
|
|
2009
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentTexture_atIndex_,
|
|
2010
|
+
"setFragmentTexture:atIndex:");
|
|
2011
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentTextures_withRange_,
|
|
2012
|
+
"setFragmentTextures:withRange:");
|
|
2013
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentVisibleFunctionTable_atBufferIndex_,
|
|
2014
|
+
"setFragmentVisibleFunctionTable:atBufferIndex:");
|
|
2015
|
+
_MTL_PRIVATE_DEF_SEL(setFragmentVisibleFunctionTables_withBufferRange_,
|
|
2016
|
+
"setFragmentVisibleFunctionTables:withBufferRange:");
|
|
2017
|
+
_MTL_PRIVATE_DEF_SEL(setFrontFaceStencil_,
|
|
2018
|
+
"setFrontFaceStencil:");
|
|
2019
|
+
_MTL_PRIVATE_DEF_SEL(setFrontFacingWinding_,
|
|
2020
|
+
"setFrontFacingWinding:");
|
|
2021
|
+
_MTL_PRIVATE_DEF_SEL(setFunction_atIndex_,
|
|
2022
|
+
"setFunction:atIndex:");
|
|
2023
|
+
_MTL_PRIVATE_DEF_SEL(setFunctionCount_,
|
|
2024
|
+
"setFunctionCount:");
|
|
2025
|
+
_MTL_PRIVATE_DEF_SEL(setFunctionDescriptor_,
|
|
2026
|
+
"setFunctionDescriptor:");
|
|
2027
|
+
_MTL_PRIVATE_DEF_SEL(setFunctionDescriptors_,
|
|
2028
|
+
"setFunctionDescriptors:");
|
|
2029
|
+
_MTL_PRIVATE_DEF_SEL(setFunctionGraph_,
|
|
2030
|
+
"setFunctionGraph:");
|
|
2031
|
+
_MTL_PRIVATE_DEF_SEL(setFunctionGraphs_,
|
|
2032
|
+
"setFunctionGraphs:");
|
|
2033
|
+
_MTL_PRIVATE_DEF_SEL(setFunctionName_,
|
|
2034
|
+
"setFunctionName:");
|
|
2035
|
+
_MTL_PRIVATE_DEF_SEL(setFunctions_,
|
|
2036
|
+
"setFunctions:");
|
|
2037
|
+
_MTL_PRIVATE_DEF_SEL(setFunctions_withRange_,
|
|
2038
|
+
"setFunctions:withRange:");
|
|
2039
|
+
_MTL_PRIVATE_DEF_SEL(setGeometryDescriptors_,
|
|
2040
|
+
"setGeometryDescriptors:");
|
|
2041
|
+
_MTL_PRIVATE_DEF_SEL(setGroups_,
|
|
2042
|
+
"setGroups:");
|
|
2043
|
+
_MTL_PRIVATE_DEF_SEL(setHazardTrackingMode_,
|
|
2044
|
+
"setHazardTrackingMode:");
|
|
2045
|
+
_MTL_PRIVATE_DEF_SEL(setHeight_,
|
|
2046
|
+
"setHeight:");
|
|
2047
|
+
_MTL_PRIVATE_DEF_SEL(setImageblockSampleLength_,
|
|
2048
|
+
"setImageblockSampleLength:");
|
|
2049
|
+
_MTL_PRIVATE_DEF_SEL(setImageblockWidth_height_,
|
|
2050
|
+
"setImageblockWidth:height:");
|
|
2051
|
+
_MTL_PRIVATE_DEF_SEL(setIndex_,
|
|
2052
|
+
"setIndex:");
|
|
2053
|
+
_MTL_PRIVATE_DEF_SEL(setIndexBuffer_,
|
|
2054
|
+
"setIndexBuffer:");
|
|
2055
|
+
_MTL_PRIVATE_DEF_SEL(setIndexBufferIndex_,
|
|
2056
|
+
"setIndexBufferIndex:");
|
|
2057
|
+
_MTL_PRIVATE_DEF_SEL(setIndexBufferOffset_,
|
|
2058
|
+
"setIndexBufferOffset:");
|
|
2059
|
+
_MTL_PRIVATE_DEF_SEL(setIndexType_,
|
|
2060
|
+
"setIndexType:");
|
|
2061
|
+
_MTL_PRIVATE_DEF_SEL(setIndirectCommandBuffer_atIndex_,
|
|
2062
|
+
"setIndirectCommandBuffer:atIndex:");
|
|
2063
|
+
_MTL_PRIVATE_DEF_SEL(setIndirectCommandBuffers_withRange_,
|
|
2064
|
+
"setIndirectCommandBuffers:withRange:");
|
|
2065
|
+
_MTL_PRIVATE_DEF_SEL(setInheritBuffers_,
|
|
2066
|
+
"setInheritBuffers:");
|
|
2067
|
+
_MTL_PRIVATE_DEF_SEL(setInheritCullMode_,
|
|
2068
|
+
"setInheritCullMode:");
|
|
2069
|
+
_MTL_PRIVATE_DEF_SEL(setInheritDepthBias_,
|
|
2070
|
+
"setInheritDepthBias:");
|
|
2071
|
+
_MTL_PRIVATE_DEF_SEL(setInheritDepthClipMode_,
|
|
2072
|
+
"setInheritDepthClipMode:");
|
|
2073
|
+
_MTL_PRIVATE_DEF_SEL(setInheritDepthStencilState_,
|
|
2074
|
+
"setInheritDepthStencilState:");
|
|
2075
|
+
_MTL_PRIVATE_DEF_SEL(setInheritFrontFacingWinding_,
|
|
2076
|
+
"setInheritFrontFacingWinding:");
|
|
2077
|
+
_MTL_PRIVATE_DEF_SEL(setInheritPipelineState_,
|
|
2078
|
+
"setInheritPipelineState:");
|
|
2079
|
+
_MTL_PRIVATE_DEF_SEL(setInheritTriangleFillMode_,
|
|
2080
|
+
"setInheritTriangleFillMode:");
|
|
2081
|
+
_MTL_PRIVATE_DEF_SEL(setInitialCapacity_,
|
|
2082
|
+
"setInitialCapacity:");
|
|
2083
|
+
_MTL_PRIVATE_DEF_SEL(setInitializeBindings_,
|
|
2084
|
+
"setInitializeBindings:");
|
|
2085
|
+
_MTL_PRIVATE_DEF_SEL(setInputDimensions_atBufferIndex_,
|
|
2086
|
+
"setInputDimensions:atBufferIndex:");
|
|
2087
|
+
_MTL_PRIVATE_DEF_SEL(setInputDimensions_withRange_,
|
|
2088
|
+
"setInputDimensions:withRange:");
|
|
2089
|
+
_MTL_PRIVATE_DEF_SEL(setInputPrimitiveTopology_,
|
|
2090
|
+
"setInputPrimitiveTopology:");
|
|
2091
|
+
_MTL_PRIVATE_DEF_SEL(setInsertLibraries_,
|
|
2092
|
+
"setInsertLibraries:");
|
|
2093
|
+
_MTL_PRIVATE_DEF_SEL(setInstallName_,
|
|
2094
|
+
"setInstallName:");
|
|
2095
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceCount_,
|
|
2096
|
+
"setInstanceCount:");
|
|
2097
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceCountBuffer_,
|
|
2098
|
+
"setInstanceCountBuffer:");
|
|
2099
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceCountBufferOffset_,
|
|
2100
|
+
"setInstanceCountBufferOffset:");
|
|
2101
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceDescriptorBuffer_,
|
|
2102
|
+
"setInstanceDescriptorBuffer:");
|
|
2103
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceDescriptorBufferOffset_,
|
|
2104
|
+
"setInstanceDescriptorBufferOffset:");
|
|
2105
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceDescriptorStride_,
|
|
2106
|
+
"setInstanceDescriptorStride:");
|
|
2107
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceDescriptorType_,
|
|
2108
|
+
"setInstanceDescriptorType:");
|
|
2109
|
+
_MTL_PRIVATE_DEF_SEL(setInstanceTransformationMatrixLayout_,
|
|
2110
|
+
"setInstanceTransformationMatrixLayout:");
|
|
2111
|
+
_MTL_PRIVATE_DEF_SEL(setInstancedAccelerationStructures_,
|
|
2112
|
+
"setInstancedAccelerationStructures:");
|
|
2113
|
+
_MTL_PRIVATE_DEF_SEL(setIntersectionFunctionTable_atBufferIndex_,
|
|
2114
|
+
"setIntersectionFunctionTable:atBufferIndex:");
|
|
2115
|
+
_MTL_PRIVATE_DEF_SEL(setIntersectionFunctionTable_atIndex_,
|
|
2116
|
+
"setIntersectionFunctionTable:atIndex:");
|
|
2117
|
+
_MTL_PRIVATE_DEF_SEL(setIntersectionFunctionTableOffset_,
|
|
2118
|
+
"setIntersectionFunctionTableOffset:");
|
|
2119
|
+
_MTL_PRIVATE_DEF_SEL(setIntersectionFunctionTables_withBufferRange_,
|
|
2120
|
+
"setIntersectionFunctionTables:withBufferRange:");
|
|
2121
|
+
_MTL_PRIVATE_DEF_SEL(setIntersectionFunctionTables_withRange_,
|
|
2122
|
+
"setIntersectionFunctionTables:withRange:");
|
|
2123
|
+
_MTL_PRIVATE_DEF_SEL(setKernelBuffer_offset_atIndex_,
|
|
2124
|
+
"setKernelBuffer:offset:atIndex:");
|
|
2125
|
+
_MTL_PRIVATE_DEF_SEL(setKernelBuffer_offset_attributeStride_atIndex_,
|
|
2126
|
+
"setKernelBuffer:offset:attributeStride:atIndex:");
|
|
2127
|
+
_MTL_PRIVATE_DEF_SEL(setLabel_,
|
|
2128
|
+
"setLabel:");
|
|
2129
|
+
_MTL_PRIVATE_DEF_SEL(setLanguageVersion_,
|
|
2130
|
+
"setLanguageVersion:");
|
|
2131
|
+
_MTL_PRIVATE_DEF_SEL(setLayer_atIndex_,
|
|
2132
|
+
"setLayer:atIndex:");
|
|
2133
|
+
_MTL_PRIVATE_DEF_SEL(setLevel_,
|
|
2134
|
+
"setLevel:");
|
|
2135
|
+
_MTL_PRIVATE_DEF_SEL(setLevelRange_,
|
|
2136
|
+
"setLevelRange:");
|
|
2137
|
+
_MTL_PRIVATE_DEF_SEL(setLibraries_,
|
|
2138
|
+
"setLibraries:");
|
|
2139
|
+
_MTL_PRIVATE_DEF_SEL(setLibrary_,
|
|
2140
|
+
"setLibrary:");
|
|
2141
|
+
_MTL_PRIVATE_DEF_SEL(setLibraryType_,
|
|
2142
|
+
"setLibraryType:");
|
|
2143
|
+
_MTL_PRIVATE_DEF_SEL(setLinkedFunctions_,
|
|
2144
|
+
"setLinkedFunctions:");
|
|
2145
|
+
_MTL_PRIVATE_DEF_SEL(setLoadAction_,
|
|
2146
|
+
"setLoadAction:");
|
|
2147
|
+
_MTL_PRIVATE_DEF_SEL(setLodAverage_,
|
|
2148
|
+
"setLodAverage:");
|
|
2149
|
+
_MTL_PRIVATE_DEF_SEL(setLodBias_,
|
|
2150
|
+
"setLodBias:");
|
|
2151
|
+
_MTL_PRIVATE_DEF_SEL(setLodMaxClamp_,
|
|
2152
|
+
"setLodMaxClamp:");
|
|
2153
|
+
_MTL_PRIVATE_DEF_SEL(setLodMinClamp_,
|
|
2154
|
+
"setLodMinClamp:");
|
|
2155
|
+
_MTL_PRIVATE_DEF_SEL(setLogState_,
|
|
2156
|
+
"setLogState:");
|
|
2157
|
+
_MTL_PRIVATE_DEF_SEL(setLookupArchives_,
|
|
2158
|
+
"setLookupArchives:");
|
|
2159
|
+
_MTL_PRIVATE_DEF_SEL(setMachineLearningFunctionDescriptor_,
|
|
2160
|
+
"setMachineLearningFunctionDescriptor:");
|
|
2161
|
+
_MTL_PRIVATE_DEF_SEL(setMagFilter_,
|
|
2162
|
+
"setMagFilter:");
|
|
2163
|
+
_MTL_PRIVATE_DEF_SEL(setMathFloatingPointFunctions_,
|
|
2164
|
+
"setMathFloatingPointFunctions:");
|
|
2165
|
+
_MTL_PRIVATE_DEF_SEL(setMathMode_,
|
|
2166
|
+
"setMathMode:");
|
|
2167
|
+
_MTL_PRIVATE_DEF_SEL(setMaxAnisotropy_,
|
|
2168
|
+
"setMaxAnisotropy:");
|
|
2169
|
+
_MTL_PRIVATE_DEF_SEL(setMaxBufferBindCount_,
|
|
2170
|
+
"setMaxBufferBindCount:");
|
|
2171
|
+
_MTL_PRIVATE_DEF_SEL(setMaxCallStackDepth_,
|
|
2172
|
+
"setMaxCallStackDepth:");
|
|
2173
|
+
_MTL_PRIVATE_DEF_SEL(setMaxCommandBufferCount_,
|
|
2174
|
+
"setMaxCommandBufferCount:");
|
|
2175
|
+
_MTL_PRIVATE_DEF_SEL(setMaxCommandsInFlight_,
|
|
2176
|
+
"setMaxCommandsInFlight:");
|
|
2177
|
+
_MTL_PRIVATE_DEF_SEL(setMaxCompatiblePlacementSparsePageSize_,
|
|
2178
|
+
"setMaxCompatiblePlacementSparsePageSize:");
|
|
2179
|
+
_MTL_PRIVATE_DEF_SEL(setMaxFragmentBufferBindCount_,
|
|
2180
|
+
"setMaxFragmentBufferBindCount:");
|
|
2181
|
+
_MTL_PRIVATE_DEF_SEL(setMaxFragmentCallStackDepth_,
|
|
2182
|
+
"setMaxFragmentCallStackDepth:");
|
|
2183
|
+
_MTL_PRIVATE_DEF_SEL(setMaxInstanceCount_,
|
|
2184
|
+
"setMaxInstanceCount:");
|
|
2185
|
+
_MTL_PRIVATE_DEF_SEL(setMaxKernelBufferBindCount_,
|
|
2186
|
+
"setMaxKernelBufferBindCount:");
|
|
2187
|
+
_MTL_PRIVATE_DEF_SEL(setMaxKernelThreadgroupMemoryBindCount_,
|
|
2188
|
+
"setMaxKernelThreadgroupMemoryBindCount:");
|
|
2189
|
+
_MTL_PRIVATE_DEF_SEL(setMaxMeshBufferBindCount_,
|
|
2190
|
+
"setMaxMeshBufferBindCount:");
|
|
2191
|
+
_MTL_PRIVATE_DEF_SEL(setMaxMotionTransformCount_,
|
|
2192
|
+
"setMaxMotionTransformCount:");
|
|
2193
|
+
_MTL_PRIVATE_DEF_SEL(setMaxObjectBufferBindCount_,
|
|
2194
|
+
"setMaxObjectBufferBindCount:");
|
|
2195
|
+
_MTL_PRIVATE_DEF_SEL(setMaxObjectThreadgroupMemoryBindCount_,
|
|
2196
|
+
"setMaxObjectThreadgroupMemoryBindCount:");
|
|
2197
|
+
_MTL_PRIVATE_DEF_SEL(setMaxSamplerStateBindCount_,
|
|
2198
|
+
"setMaxSamplerStateBindCount:");
|
|
2199
|
+
_MTL_PRIVATE_DEF_SEL(setMaxTessellationFactor_,
|
|
2200
|
+
"setMaxTessellationFactor:");
|
|
2201
|
+
_MTL_PRIVATE_DEF_SEL(setMaxTextureBindCount_,
|
|
2202
|
+
"setMaxTextureBindCount:");
|
|
2203
|
+
_MTL_PRIVATE_DEF_SEL(setMaxTotalThreadgroupsPerMeshGrid_,
|
|
2204
|
+
"setMaxTotalThreadgroupsPerMeshGrid:");
|
|
2205
|
+
_MTL_PRIVATE_DEF_SEL(setMaxTotalThreadsPerMeshThreadgroup_,
|
|
2206
|
+
"setMaxTotalThreadsPerMeshThreadgroup:");
|
|
2207
|
+
_MTL_PRIVATE_DEF_SEL(setMaxTotalThreadsPerObjectThreadgroup_,
|
|
2208
|
+
"setMaxTotalThreadsPerObjectThreadgroup:");
|
|
2209
|
+
_MTL_PRIVATE_DEF_SEL(setMaxTotalThreadsPerThreadgroup_,
|
|
2210
|
+
"setMaxTotalThreadsPerThreadgroup:");
|
|
2211
|
+
_MTL_PRIVATE_DEF_SEL(setMaxVertexAmplificationCount_,
|
|
2212
|
+
"setMaxVertexAmplificationCount:");
|
|
2213
|
+
_MTL_PRIVATE_DEF_SEL(setMaxVertexBufferBindCount_,
|
|
2214
|
+
"setMaxVertexBufferBindCount:");
|
|
2215
|
+
_MTL_PRIVATE_DEF_SEL(setMaxVertexCallStackDepth_,
|
|
2216
|
+
"setMaxVertexCallStackDepth:");
|
|
2217
|
+
_MTL_PRIVATE_DEF_SEL(setMeshAdditionalBinaryFunctions_,
|
|
2218
|
+
"setMeshAdditionalBinaryFunctions:");
|
|
2219
|
+
_MTL_PRIVATE_DEF_SEL(setMeshBuffer_offset_atIndex_,
|
|
2220
|
+
"setMeshBuffer:offset:atIndex:");
|
|
2221
|
+
_MTL_PRIVATE_DEF_SEL(setMeshBufferOffset_atIndex_,
|
|
2222
|
+
"setMeshBufferOffset:atIndex:");
|
|
2223
|
+
_MTL_PRIVATE_DEF_SEL(setMeshBuffers_offsets_withRange_,
|
|
2224
|
+
"setMeshBuffers:offsets:withRange:");
|
|
2225
|
+
_MTL_PRIVATE_DEF_SEL(setMeshBytes_length_atIndex_,
|
|
2226
|
+
"setMeshBytes:length:atIndex:");
|
|
2227
|
+
_MTL_PRIVATE_DEF_SEL(setMeshFunction_,
|
|
2228
|
+
"setMeshFunction:");
|
|
2229
|
+
_MTL_PRIVATE_DEF_SEL(setMeshFunctionDescriptor_,
|
|
2230
|
+
"setMeshFunctionDescriptor:");
|
|
2231
|
+
_MTL_PRIVATE_DEF_SEL(setMeshLinkedFunctions_,
|
|
2232
|
+
"setMeshLinkedFunctions:");
|
|
2233
|
+
_MTL_PRIVATE_DEF_SEL(setMeshSamplerState_atIndex_,
|
|
2234
|
+
"setMeshSamplerState:atIndex:");
|
|
2235
|
+
_MTL_PRIVATE_DEF_SEL(setMeshSamplerState_lodMinClamp_lodMaxClamp_atIndex_,
|
|
2236
|
+
"setMeshSamplerState:lodMinClamp:lodMaxClamp:atIndex:");
|
|
2237
|
+
_MTL_PRIVATE_DEF_SEL(setMeshSamplerStates_lodMinClamps_lodMaxClamps_withRange_,
|
|
2238
|
+
"setMeshSamplerStates:lodMinClamps:lodMaxClamps:withRange:");
|
|
2239
|
+
_MTL_PRIVATE_DEF_SEL(setMeshSamplerStates_withRange_,
|
|
2240
|
+
"setMeshSamplerStates:withRange:");
|
|
2241
|
+
_MTL_PRIVATE_DEF_SEL(setMeshStaticLinkingDescriptor_,
|
|
2242
|
+
"setMeshStaticLinkingDescriptor:");
|
|
2243
|
+
_MTL_PRIVATE_DEF_SEL(setMeshTexture_atIndex_,
|
|
2244
|
+
"setMeshTexture:atIndex:");
|
|
2245
|
+
_MTL_PRIVATE_DEF_SEL(setMeshTextures_withRange_,
|
|
2246
|
+
"setMeshTextures:withRange:");
|
|
2247
|
+
_MTL_PRIVATE_DEF_SEL(setMeshThreadgroupSizeIsMultipleOfThreadExecutionWidth_,
|
|
2248
|
+
"setMeshThreadgroupSizeIsMultipleOfThreadExecutionWidth:");
|
|
2249
|
+
_MTL_PRIVATE_DEF_SEL(setMinFilter_,
|
|
2250
|
+
"setMinFilter:");
|
|
2251
|
+
_MTL_PRIVATE_DEF_SEL(setMipFilter_,
|
|
2252
|
+
"setMipFilter:");
|
|
2253
|
+
_MTL_PRIVATE_DEF_SEL(setMipmapLevelCount_,
|
|
2254
|
+
"setMipmapLevelCount:");
|
|
2255
|
+
_MTL_PRIVATE_DEF_SEL(setMotionEndBorderMode_,
|
|
2256
|
+
"setMotionEndBorderMode:");
|
|
2257
|
+
_MTL_PRIVATE_DEF_SEL(setMotionEndTime_,
|
|
2258
|
+
"setMotionEndTime:");
|
|
2259
|
+
_MTL_PRIVATE_DEF_SEL(setMotionKeyframeCount_,
|
|
2260
|
+
"setMotionKeyframeCount:");
|
|
2261
|
+
_MTL_PRIVATE_DEF_SEL(setMotionStartBorderMode_,
|
|
2262
|
+
"setMotionStartBorderMode:");
|
|
2263
|
+
_MTL_PRIVATE_DEF_SEL(setMotionStartTime_,
|
|
2264
|
+
"setMotionStartTime:");
|
|
2265
|
+
_MTL_PRIVATE_DEF_SEL(setMotionTransformBuffer_,
|
|
2266
|
+
"setMotionTransformBuffer:");
|
|
2267
|
+
_MTL_PRIVATE_DEF_SEL(setMotionTransformBufferOffset_,
|
|
2268
|
+
"setMotionTransformBufferOffset:");
|
|
2269
|
+
_MTL_PRIVATE_DEF_SEL(setMotionTransformCount_,
|
|
2270
|
+
"setMotionTransformCount:");
|
|
2271
|
+
_MTL_PRIVATE_DEF_SEL(setMotionTransformCountBuffer_,
|
|
2272
|
+
"setMotionTransformCountBuffer:");
|
|
2273
|
+
_MTL_PRIVATE_DEF_SEL(setMotionTransformCountBufferOffset_,
|
|
2274
|
+
"setMotionTransformCountBufferOffset:");
|
|
2275
|
+
_MTL_PRIVATE_DEF_SEL(setMotionTransformStride_,
|
|
2276
|
+
"setMotionTransformStride:");
|
|
2277
|
+
_MTL_PRIVATE_DEF_SEL(setMotionTransformType_,
|
|
2278
|
+
"setMotionTransformType:");
|
|
2279
|
+
_MTL_PRIVATE_DEF_SEL(setMutability_,
|
|
2280
|
+
"setMutability:");
|
|
2281
|
+
_MTL_PRIVATE_DEF_SEL(setName_,
|
|
2282
|
+
"setName:");
|
|
2283
|
+
_MTL_PRIVATE_DEF_SEL(setNodes_,
|
|
2284
|
+
"setNodes:");
|
|
2285
|
+
_MTL_PRIVATE_DEF_SEL(setNormalizedCoordinates_,
|
|
2286
|
+
"setNormalizedCoordinates:");
|
|
2287
|
+
_MTL_PRIVATE_DEF_SEL(setObject_atIndexedSubscript_,
|
|
2288
|
+
"setObject:atIndexedSubscript:");
|
|
2289
|
+
_MTL_PRIVATE_DEF_SEL(setObjectAdditionalBinaryFunctions_,
|
|
2290
|
+
"setObjectAdditionalBinaryFunctions:");
|
|
2291
|
+
_MTL_PRIVATE_DEF_SEL(setObjectBuffer_offset_atIndex_,
|
|
2292
|
+
"setObjectBuffer:offset:atIndex:");
|
|
2293
|
+
_MTL_PRIVATE_DEF_SEL(setObjectBufferOffset_atIndex_,
|
|
2294
|
+
"setObjectBufferOffset:atIndex:");
|
|
2295
|
+
_MTL_PRIVATE_DEF_SEL(setObjectBuffers_offsets_withRange_,
|
|
2296
|
+
"setObjectBuffers:offsets:withRange:");
|
|
2297
|
+
_MTL_PRIVATE_DEF_SEL(setObjectBytes_length_atIndex_,
|
|
2298
|
+
"setObjectBytes:length:atIndex:");
|
|
2299
|
+
_MTL_PRIVATE_DEF_SEL(setObjectFunction_,
|
|
2300
|
+
"setObjectFunction:");
|
|
2301
|
+
_MTL_PRIVATE_DEF_SEL(setObjectFunctionDescriptor_,
|
|
2302
|
+
"setObjectFunctionDescriptor:");
|
|
2303
|
+
_MTL_PRIVATE_DEF_SEL(setObjectLinkedFunctions_,
|
|
2304
|
+
"setObjectLinkedFunctions:");
|
|
2305
|
+
_MTL_PRIVATE_DEF_SEL(setObjectSamplerState_atIndex_,
|
|
2306
|
+
"setObjectSamplerState:atIndex:");
|
|
2307
|
+
_MTL_PRIVATE_DEF_SEL(setObjectSamplerState_lodMinClamp_lodMaxClamp_atIndex_,
|
|
2308
|
+
"setObjectSamplerState:lodMinClamp:lodMaxClamp:atIndex:");
|
|
2309
|
+
_MTL_PRIVATE_DEF_SEL(setObjectSamplerStates_lodMinClamps_lodMaxClamps_withRange_,
|
|
2310
|
+
"setObjectSamplerStates:lodMinClamps:lodMaxClamps:withRange:");
|
|
2311
|
+
_MTL_PRIVATE_DEF_SEL(setObjectSamplerStates_withRange_,
|
|
2312
|
+
"setObjectSamplerStates:withRange:");
|
|
2313
|
+
_MTL_PRIVATE_DEF_SEL(setObjectStaticLinkingDescriptor_,
|
|
2314
|
+
"setObjectStaticLinkingDescriptor:");
|
|
2315
|
+
_MTL_PRIVATE_DEF_SEL(setObjectTexture_atIndex_,
|
|
2316
|
+
"setObjectTexture:atIndex:");
|
|
2317
|
+
_MTL_PRIVATE_DEF_SEL(setObjectTextures_withRange_,
|
|
2318
|
+
"setObjectTextures:withRange:");
|
|
2319
|
+
_MTL_PRIVATE_DEF_SEL(setObjectThreadgroupMemoryLength_atIndex_,
|
|
2320
|
+
"setObjectThreadgroupMemoryLength:atIndex:");
|
|
2321
|
+
_MTL_PRIVATE_DEF_SEL(setObjectThreadgroupSizeIsMultipleOfThreadExecutionWidth_,
|
|
2322
|
+
"setObjectThreadgroupSizeIsMultipleOfThreadExecutionWidth:");
|
|
2323
|
+
_MTL_PRIVATE_DEF_SEL(setOffset_,
|
|
2324
|
+
"setOffset:");
|
|
2325
|
+
_MTL_PRIVATE_DEF_SEL(setOpaque_,
|
|
2326
|
+
"setOpaque:");
|
|
2327
|
+
_MTL_PRIVATE_DEF_SEL(setOpaqueCurveIntersectionFunctionWithSignature_atIndex_,
|
|
2328
|
+
"setOpaqueCurveIntersectionFunctionWithSignature:atIndex:");
|
|
2329
|
+
_MTL_PRIVATE_DEF_SEL(setOpaqueCurveIntersectionFunctionWithSignature_withRange_,
|
|
2330
|
+
"setOpaqueCurveIntersectionFunctionWithSignature:withRange:");
|
|
2331
|
+
_MTL_PRIVATE_DEF_SEL(setOpaqueTriangleIntersectionFunctionWithSignature_atIndex_,
|
|
2332
|
+
"setOpaqueTriangleIntersectionFunctionWithSignature:atIndex:");
|
|
2333
|
+
_MTL_PRIVATE_DEF_SEL(setOpaqueTriangleIntersectionFunctionWithSignature_withRange_,
|
|
2334
|
+
"setOpaqueTriangleIntersectionFunctionWithSignature:withRange:");
|
|
2335
|
+
_MTL_PRIVATE_DEF_SEL(setOptimizationLevel_,
|
|
2336
|
+
"setOptimizationLevel:");
|
|
2337
|
+
_MTL_PRIVATE_DEF_SEL(setOptions_,
|
|
2338
|
+
"setOptions:");
|
|
2339
|
+
_MTL_PRIVATE_DEF_SEL(setOutputNode_,
|
|
2340
|
+
"setOutputNode:");
|
|
2341
|
+
_MTL_PRIVATE_DEF_SEL(setOutputURL_,
|
|
2342
|
+
"setOutputURL:");
|
|
2343
|
+
_MTL_PRIVATE_DEF_SEL(setOwnerWithIdentity_,
|
|
2344
|
+
"setOwnerWithIdentity:");
|
|
2345
|
+
_MTL_PRIVATE_DEF_SEL(setPayloadMemoryLength_,
|
|
2346
|
+
"setPayloadMemoryLength:");
|
|
2347
|
+
_MTL_PRIVATE_DEF_SEL(setPhysicalIndex_forLogicalIndex_,
|
|
2348
|
+
"setPhysicalIndex:forLogicalIndex:");
|
|
2349
|
+
_MTL_PRIVATE_DEF_SEL(setPipelineDataSetSerializer_,
|
|
2350
|
+
"setPipelineDataSetSerializer:");
|
|
2351
|
+
_MTL_PRIVATE_DEF_SEL(setPipelineState_,
|
|
2352
|
+
"setPipelineState:");
|
|
2353
|
+
_MTL_PRIVATE_DEF_SEL(setPixelFormat_,
|
|
2354
|
+
"setPixelFormat:");
|
|
2355
|
+
_MTL_PRIVATE_DEF_SEL(setPlacementSparsePageSize_,
|
|
2356
|
+
"setPlacementSparsePageSize:");
|
|
2357
|
+
_MTL_PRIVATE_DEF_SEL(setPreloadedLibraries_,
|
|
2358
|
+
"setPreloadedLibraries:");
|
|
2359
|
+
_MTL_PRIVATE_DEF_SEL(setPreprocessorMacros_,
|
|
2360
|
+
"setPreprocessorMacros:");
|
|
2361
|
+
_MTL_PRIVATE_DEF_SEL(setPreserveInvariance_,
|
|
2362
|
+
"setPreserveInvariance:");
|
|
2363
|
+
_MTL_PRIVATE_DEF_SEL(setPrimitiveDataBuffer_,
|
|
2364
|
+
"setPrimitiveDataBuffer:");
|
|
2365
|
+
_MTL_PRIVATE_DEF_SEL(setPrimitiveDataBufferOffset_,
|
|
2366
|
+
"setPrimitiveDataBufferOffset:");
|
|
2367
|
+
_MTL_PRIVATE_DEF_SEL(setPrimitiveDataElementSize_,
|
|
2368
|
+
"setPrimitiveDataElementSize:");
|
|
2369
|
+
_MTL_PRIVATE_DEF_SEL(setPrimitiveDataStride_,
|
|
2370
|
+
"setPrimitiveDataStride:");
|
|
2371
|
+
_MTL_PRIVATE_DEF_SEL(setPriority_,
|
|
2372
|
+
"setPriority:");
|
|
2373
|
+
_MTL_PRIVATE_DEF_SEL(setPrivateFunctionDescriptors_,
|
|
2374
|
+
"setPrivateFunctionDescriptors:");
|
|
2375
|
+
_MTL_PRIVATE_DEF_SEL(setPrivateFunctions_,
|
|
2376
|
+
"setPrivateFunctions:");
|
|
2377
|
+
_MTL_PRIVATE_DEF_SEL(setPurgeableState_,
|
|
2378
|
+
"setPurgeableState:");
|
|
2379
|
+
_MTL_PRIVATE_DEF_SEL(setRAddressMode_,
|
|
2380
|
+
"setRAddressMode:");
|
|
2381
|
+
_MTL_PRIVATE_DEF_SEL(setRadiusBuffer_,
|
|
2382
|
+
"setRadiusBuffer:");
|
|
2383
|
+
_MTL_PRIVATE_DEF_SEL(setRadiusBufferOffset_,
|
|
2384
|
+
"setRadiusBufferOffset:");
|
|
2385
|
+
_MTL_PRIVATE_DEF_SEL(setRadiusBuffers_,
|
|
2386
|
+
"setRadiusBuffers:");
|
|
2387
|
+
_MTL_PRIVATE_DEF_SEL(setRadiusFormat_,
|
|
2388
|
+
"setRadiusFormat:");
|
|
2389
|
+
_MTL_PRIVATE_DEF_SEL(setRadiusStride_,
|
|
2390
|
+
"setRadiusStride:");
|
|
2391
|
+
_MTL_PRIVATE_DEF_SEL(setRasterSampleCount_,
|
|
2392
|
+
"setRasterSampleCount:");
|
|
2393
|
+
_MTL_PRIVATE_DEF_SEL(setRasterizationEnabled_,
|
|
2394
|
+
"setRasterizationEnabled:");
|
|
2395
|
+
_MTL_PRIVATE_DEF_SEL(setRasterizationRateMap_,
|
|
2396
|
+
"setRasterizationRateMap:");
|
|
2397
|
+
_MTL_PRIVATE_DEF_SEL(setReadMask_,
|
|
2398
|
+
"setReadMask:");
|
|
2399
|
+
_MTL_PRIVATE_DEF_SEL(setReductionMode_,
|
|
2400
|
+
"setReductionMode:");
|
|
2401
|
+
_MTL_PRIVATE_DEF_SEL(setRenderPipelineState_,
|
|
2402
|
+
"setRenderPipelineState:");
|
|
2403
|
+
_MTL_PRIVATE_DEF_SEL(setRenderPipelineState_atIndex_,
|
|
2404
|
+
"setRenderPipelineState:atIndex:");
|
|
2405
|
+
_MTL_PRIVATE_DEF_SEL(setRenderPipelineStates_withRange_,
|
|
2406
|
+
"setRenderPipelineStates:withRange:");
|
|
2407
|
+
_MTL_PRIVATE_DEF_SEL(setRenderTargetArrayLength_,
|
|
2408
|
+
"setRenderTargetArrayLength:");
|
|
2409
|
+
_MTL_PRIVATE_DEF_SEL(setRenderTargetHeight_,
|
|
2410
|
+
"setRenderTargetHeight:");
|
|
2411
|
+
_MTL_PRIVATE_DEF_SEL(setRenderTargetWidth_,
|
|
2412
|
+
"setRenderTargetWidth:");
|
|
2413
|
+
_MTL_PRIVATE_DEF_SEL(setRequiredThreadsPerMeshThreadgroup_,
|
|
2414
|
+
"setRequiredThreadsPerMeshThreadgroup:");
|
|
2415
|
+
_MTL_PRIVATE_DEF_SEL(setRequiredThreadsPerObjectThreadgroup_,
|
|
2416
|
+
"setRequiredThreadsPerObjectThreadgroup:");
|
|
2417
|
+
_MTL_PRIVATE_DEF_SEL(setRequiredThreadsPerThreadgroup_,
|
|
2418
|
+
"setRequiredThreadsPerThreadgroup:");
|
|
2419
|
+
_MTL_PRIVATE_DEF_SEL(setResolveDepthPlane_,
|
|
2420
|
+
"setResolveDepthPlane:");
|
|
2421
|
+
_MTL_PRIVATE_DEF_SEL(setResolveLevel_,
|
|
2422
|
+
"setResolveLevel:");
|
|
2423
|
+
_MTL_PRIVATE_DEF_SEL(setResolveSlice_,
|
|
2424
|
+
"setResolveSlice:");
|
|
2425
|
+
_MTL_PRIVATE_DEF_SEL(setResolveTexture_,
|
|
2426
|
+
"setResolveTexture:");
|
|
2427
|
+
_MTL_PRIVATE_DEF_SEL(setResource_atBufferIndex_,
|
|
2428
|
+
"setResource:atBufferIndex:");
|
|
2429
|
+
_MTL_PRIVATE_DEF_SEL(setResourceOptions_,
|
|
2430
|
+
"setResourceOptions:");
|
|
2431
|
+
_MTL_PRIVATE_DEF_SEL(setResourceViewCount_,
|
|
2432
|
+
"setResourceViewCount:");
|
|
2433
|
+
_MTL_PRIVATE_DEF_SEL(setRetainedReferences_,
|
|
2434
|
+
"setRetainedReferences:");
|
|
2435
|
+
_MTL_PRIVATE_DEF_SEL(setRgbBlendOperation_,
|
|
2436
|
+
"setRgbBlendOperation:");
|
|
2437
|
+
_MTL_PRIVATE_DEF_SEL(setSAddressMode_,
|
|
2438
|
+
"setSAddressMode:");
|
|
2439
|
+
_MTL_PRIVATE_DEF_SEL(setSampleBuffer_,
|
|
2440
|
+
"setSampleBuffer:");
|
|
2441
|
+
_MTL_PRIVATE_DEF_SEL(setSampleCount_,
|
|
2442
|
+
"setSampleCount:");
|
|
2443
|
+
_MTL_PRIVATE_DEF_SEL(setSamplePositions_count_,
|
|
2444
|
+
"setSamplePositions:count:");
|
|
2445
|
+
_MTL_PRIVATE_DEF_SEL(setSamplerState_atIndex_,
|
|
2446
|
+
"setSamplerState:atIndex:");
|
|
2447
|
+
_MTL_PRIVATE_DEF_SEL(setSamplerState_lodMinClamp_lodMaxClamp_atIndex_,
|
|
2448
|
+
"setSamplerState:lodMinClamp:lodMaxClamp:atIndex:");
|
|
2449
|
+
_MTL_PRIVATE_DEF_SEL(setSamplerStates_lodMinClamps_lodMaxClamps_withRange_,
|
|
2450
|
+
"setSamplerStates:lodMinClamps:lodMaxClamps:withRange:");
|
|
2451
|
+
_MTL_PRIVATE_DEF_SEL(setSamplerStates_withRange_,
|
|
2452
|
+
"setSamplerStates:withRange:");
|
|
2453
|
+
_MTL_PRIVATE_DEF_SEL(setScissorRect_,
|
|
2454
|
+
"setScissorRect:");
|
|
2455
|
+
_MTL_PRIVATE_DEF_SEL(setScissorRects_count_,
|
|
2456
|
+
"setScissorRects:count:");
|
|
2457
|
+
_MTL_PRIVATE_DEF_SEL(setScratchBufferAllocator_,
|
|
2458
|
+
"setScratchBufferAllocator:");
|
|
2459
|
+
_MTL_PRIVATE_DEF_SEL(setScreenSize_,
|
|
2460
|
+
"setScreenSize:");
|
|
2461
|
+
_MTL_PRIVATE_DEF_SEL(setSegmentControlPointCount_,
|
|
2462
|
+
"setSegmentControlPointCount:");
|
|
2463
|
+
_MTL_PRIVATE_DEF_SEL(setSegmentCount_,
|
|
2464
|
+
"setSegmentCount:");
|
|
2465
|
+
_MTL_PRIVATE_DEF_SEL(setShaderReflection_,
|
|
2466
|
+
"setShaderReflection:");
|
|
2467
|
+
_MTL_PRIVATE_DEF_SEL(setShaderValidation_,
|
|
2468
|
+
"setShaderValidation:");
|
|
2469
|
+
_MTL_PRIVATE_DEF_SEL(setShouldMaximizeConcurrentCompilation_,
|
|
2470
|
+
"setShouldMaximizeConcurrentCompilation:");
|
|
2471
|
+
_MTL_PRIVATE_DEF_SEL(setSignaledValue_,
|
|
2472
|
+
"setSignaledValue:");
|
|
2473
|
+
_MTL_PRIVATE_DEF_SEL(setSize_,
|
|
2474
|
+
"setSize:");
|
|
2475
|
+
_MTL_PRIVATE_DEF_SEL(setSlice_,
|
|
2476
|
+
"setSlice:");
|
|
2477
|
+
_MTL_PRIVATE_DEF_SEL(setSliceRange_,
|
|
2478
|
+
"setSliceRange:");
|
|
2479
|
+
_MTL_PRIVATE_DEF_SEL(setSource_,
|
|
2480
|
+
"setSource:");
|
|
2481
|
+
_MTL_PRIVATE_DEF_SEL(setSourceAlphaBlendFactor_,
|
|
2482
|
+
"setSourceAlphaBlendFactor:");
|
|
2483
|
+
_MTL_PRIVATE_DEF_SEL(setSourceRGBBlendFactor_,
|
|
2484
|
+
"setSourceRGBBlendFactor:");
|
|
2485
|
+
_MTL_PRIVATE_DEF_SEL(setSparsePageSize_,
|
|
2486
|
+
"setSparsePageSize:");
|
|
2487
|
+
_MTL_PRIVATE_DEF_SEL(setSpecializedName_,
|
|
2488
|
+
"setSpecializedName:");
|
|
2489
|
+
_MTL_PRIVATE_DEF_SEL(setStageInRegion_,
|
|
2490
|
+
"setStageInRegion:");
|
|
2491
|
+
_MTL_PRIVATE_DEF_SEL(setStageInRegionWithIndirectBuffer_indirectBufferOffset_,
|
|
2492
|
+
"setStageInRegionWithIndirectBuffer:indirectBufferOffset:");
|
|
2493
|
+
_MTL_PRIVATE_DEF_SEL(setStageInputDescriptor_,
|
|
2494
|
+
"setStageInputDescriptor:");
|
|
2495
|
+
_MTL_PRIVATE_DEF_SEL(setStartOfEncoderSampleIndex_,
|
|
2496
|
+
"setStartOfEncoderSampleIndex:");
|
|
2497
|
+
_MTL_PRIVATE_DEF_SEL(setStartOfFragmentSampleIndex_,
|
|
2498
|
+
"setStartOfFragmentSampleIndex:");
|
|
2499
|
+
_MTL_PRIVATE_DEF_SEL(setStartOfVertexSampleIndex_,
|
|
2500
|
+
"setStartOfVertexSampleIndex:");
|
|
2501
|
+
_MTL_PRIVATE_DEF_SEL(setStaticLinkingDescriptor_,
|
|
2502
|
+
"setStaticLinkingDescriptor:");
|
|
2503
|
+
_MTL_PRIVATE_DEF_SEL(setStencilAttachment_,
|
|
2504
|
+
"setStencilAttachment:");
|
|
2505
|
+
_MTL_PRIVATE_DEF_SEL(setStencilAttachmentPixelFormat_,
|
|
2506
|
+
"setStencilAttachmentPixelFormat:");
|
|
2507
|
+
_MTL_PRIVATE_DEF_SEL(setStencilCompareFunction_,
|
|
2508
|
+
"setStencilCompareFunction:");
|
|
2509
|
+
_MTL_PRIVATE_DEF_SEL(setStencilFailureOperation_,
|
|
2510
|
+
"setStencilFailureOperation:");
|
|
2511
|
+
_MTL_PRIVATE_DEF_SEL(setStencilFrontReferenceValue_backReferenceValue_,
|
|
2512
|
+
"setStencilFrontReferenceValue:backReferenceValue:");
|
|
2513
|
+
_MTL_PRIVATE_DEF_SEL(setStencilReferenceValue_,
|
|
2514
|
+
"setStencilReferenceValue:");
|
|
2515
|
+
_MTL_PRIVATE_DEF_SEL(setStencilResolveFilter_,
|
|
2516
|
+
"setStencilResolveFilter:");
|
|
2517
|
+
_MTL_PRIVATE_DEF_SEL(setStencilStoreAction_,
|
|
2518
|
+
"setStencilStoreAction:");
|
|
2519
|
+
_MTL_PRIVATE_DEF_SEL(setStencilStoreActionOptions_,
|
|
2520
|
+
"setStencilStoreActionOptions:");
|
|
2521
|
+
_MTL_PRIVATE_DEF_SEL(setStepFunction_,
|
|
2522
|
+
"setStepFunction:");
|
|
2523
|
+
_MTL_PRIVATE_DEF_SEL(setStepRate_,
|
|
2524
|
+
"setStepRate:");
|
|
2525
|
+
_MTL_PRIVATE_DEF_SEL(setStorageMode_,
|
|
2526
|
+
"setStorageMode:");
|
|
2527
|
+
_MTL_PRIVATE_DEF_SEL(setStoreAction_,
|
|
2528
|
+
"setStoreAction:");
|
|
2529
|
+
_MTL_PRIVATE_DEF_SEL(setStoreActionOptions_,
|
|
2530
|
+
"setStoreActionOptions:");
|
|
2531
|
+
_MTL_PRIVATE_DEF_SEL(setStride_,
|
|
2532
|
+
"setStride:");
|
|
2533
|
+
_MTL_PRIVATE_DEF_SEL(setStrides_,
|
|
2534
|
+
"setStrides:");
|
|
2535
|
+
_MTL_PRIVATE_DEF_SEL(setSupportAddingBinaryFunctions_,
|
|
2536
|
+
"setSupportAddingBinaryFunctions:");
|
|
2537
|
+
_MTL_PRIVATE_DEF_SEL(setSupportAddingFragmentBinaryFunctions_,
|
|
2538
|
+
"setSupportAddingFragmentBinaryFunctions:");
|
|
2539
|
+
_MTL_PRIVATE_DEF_SEL(setSupportAddingVertexBinaryFunctions_,
|
|
2540
|
+
"setSupportAddingVertexBinaryFunctions:");
|
|
2541
|
+
_MTL_PRIVATE_DEF_SEL(setSupportArgumentBuffers_,
|
|
2542
|
+
"setSupportArgumentBuffers:");
|
|
2543
|
+
_MTL_PRIVATE_DEF_SEL(setSupportAttributeStrides_,
|
|
2544
|
+
"setSupportAttributeStrides:");
|
|
2545
|
+
_MTL_PRIVATE_DEF_SEL(setSupportBinaryLinking_,
|
|
2546
|
+
"setSupportBinaryLinking:");
|
|
2547
|
+
_MTL_PRIVATE_DEF_SEL(setSupportColorAttachmentMapping_,
|
|
2548
|
+
"setSupportColorAttachmentMapping:");
|
|
2549
|
+
_MTL_PRIVATE_DEF_SEL(setSupportDynamicAttributeStride_,
|
|
2550
|
+
"setSupportDynamicAttributeStride:");
|
|
2551
|
+
_MTL_PRIVATE_DEF_SEL(setSupportFragmentBinaryLinking_,
|
|
2552
|
+
"setSupportFragmentBinaryLinking:");
|
|
2553
|
+
_MTL_PRIVATE_DEF_SEL(setSupportIndirectCommandBuffers_,
|
|
2554
|
+
"setSupportIndirectCommandBuffers:");
|
|
2555
|
+
_MTL_PRIVATE_DEF_SEL(setSupportMeshBinaryLinking_,
|
|
2556
|
+
"setSupportMeshBinaryLinking:");
|
|
2557
|
+
_MTL_PRIVATE_DEF_SEL(setSupportObjectBinaryLinking_,
|
|
2558
|
+
"setSupportObjectBinaryLinking:");
|
|
2559
|
+
_MTL_PRIVATE_DEF_SEL(setSupportRayTracing_,
|
|
2560
|
+
"setSupportRayTracing:");
|
|
2561
|
+
_MTL_PRIVATE_DEF_SEL(setSupportVertexBinaryLinking_,
|
|
2562
|
+
"setSupportVertexBinaryLinking:");
|
|
2563
|
+
_MTL_PRIVATE_DEF_SEL(setSwizzle_,
|
|
2564
|
+
"setSwizzle:");
|
|
2565
|
+
_MTL_PRIVATE_DEF_SEL(setTAddressMode_,
|
|
2566
|
+
"setTAddressMode:");
|
|
2567
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationControlPointIndexType_,
|
|
2568
|
+
"setTessellationControlPointIndexType:");
|
|
2569
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationFactorBuffer_offset_instanceStride_,
|
|
2570
|
+
"setTessellationFactorBuffer:offset:instanceStride:");
|
|
2571
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationFactorFormat_,
|
|
2572
|
+
"setTessellationFactorFormat:");
|
|
2573
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationFactorScale_,
|
|
2574
|
+
"setTessellationFactorScale:");
|
|
2575
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationFactorScaleEnabled_,
|
|
2576
|
+
"setTessellationFactorScaleEnabled:");
|
|
2577
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationFactorStepFunction_,
|
|
2578
|
+
"setTessellationFactorStepFunction:");
|
|
2579
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationOutputWindingOrder_,
|
|
2580
|
+
"setTessellationOutputWindingOrder:");
|
|
2581
|
+
_MTL_PRIVATE_DEF_SEL(setTessellationPartitionMode_,
|
|
2582
|
+
"setTessellationPartitionMode:");
|
|
2583
|
+
_MTL_PRIVATE_DEF_SEL(setTexture_,
|
|
2584
|
+
"setTexture:");
|
|
2585
|
+
_MTL_PRIVATE_DEF_SEL(setTexture_atIndex_,
|
|
2586
|
+
"setTexture:atIndex:");
|
|
2587
|
+
_MTL_PRIVATE_DEF_SEL(setTextureType_,
|
|
2588
|
+
"setTextureType:");
|
|
2589
|
+
_MTL_PRIVATE_DEF_SEL(setTextureView_atIndex_,
|
|
2590
|
+
"setTextureView:atIndex:");
|
|
2591
|
+
_MTL_PRIVATE_DEF_SEL(setTextureView_descriptor_atIndex_,
|
|
2592
|
+
"setTextureView:descriptor:atIndex:");
|
|
2593
|
+
_MTL_PRIVATE_DEF_SEL(setTextureViewFromBuffer_descriptor_offset_bytesPerRow_atIndex_,
|
|
2594
|
+
"setTextureViewFromBuffer:descriptor:offset:bytesPerRow:atIndex:");
|
|
2595
|
+
_MTL_PRIVATE_DEF_SEL(setTextures_withRange_,
|
|
2596
|
+
"setTextures:withRange:");
|
|
2597
|
+
_MTL_PRIVATE_DEF_SEL(setThreadGroupSizeIsMultipleOfThreadExecutionWidth_,
|
|
2598
|
+
"setThreadGroupSizeIsMultipleOfThreadExecutionWidth:");
|
|
2599
|
+
_MTL_PRIVATE_DEF_SEL(setThreadgroupMemoryLength_,
|
|
2600
|
+
"setThreadgroupMemoryLength:");
|
|
2601
|
+
_MTL_PRIVATE_DEF_SEL(setThreadgroupMemoryLength_atIndex_,
|
|
2602
|
+
"setThreadgroupMemoryLength:atIndex:");
|
|
2603
|
+
_MTL_PRIVATE_DEF_SEL(setThreadgroupMemoryLength_offset_atIndex_,
|
|
2604
|
+
"setThreadgroupMemoryLength:offset:atIndex:");
|
|
2605
|
+
_MTL_PRIVATE_DEF_SEL(setThreadgroupSizeMatchesTileSize_,
|
|
2606
|
+
"setThreadgroupSizeMatchesTileSize:");
|
|
2607
|
+
_MTL_PRIVATE_DEF_SEL(setTileAccelerationStructure_atBufferIndex_,
|
|
2608
|
+
"setTileAccelerationStructure:atBufferIndex:");
|
|
2609
|
+
_MTL_PRIVATE_DEF_SEL(setTileAdditionalBinaryFunctions_,
|
|
2610
|
+
"setTileAdditionalBinaryFunctions:");
|
|
2611
|
+
_MTL_PRIVATE_DEF_SEL(setTileBuffer_offset_atIndex_,
|
|
2612
|
+
"setTileBuffer:offset:atIndex:");
|
|
2613
|
+
_MTL_PRIVATE_DEF_SEL(setTileBufferOffset_atIndex_,
|
|
2614
|
+
"setTileBufferOffset:atIndex:");
|
|
2615
|
+
_MTL_PRIVATE_DEF_SEL(setTileBuffers_offsets_withRange_,
|
|
2616
|
+
"setTileBuffers:offsets:withRange:");
|
|
2617
|
+
_MTL_PRIVATE_DEF_SEL(setTileBytes_length_atIndex_,
|
|
2618
|
+
"setTileBytes:length:atIndex:");
|
|
2619
|
+
_MTL_PRIVATE_DEF_SEL(setTileFunction_,
|
|
2620
|
+
"setTileFunction:");
|
|
2621
|
+
_MTL_PRIVATE_DEF_SEL(setTileFunctionDescriptor_,
|
|
2622
|
+
"setTileFunctionDescriptor:");
|
|
2623
|
+
_MTL_PRIVATE_DEF_SEL(setTileHeight_,
|
|
2624
|
+
"setTileHeight:");
|
|
2625
|
+
_MTL_PRIVATE_DEF_SEL(setTileIntersectionFunctionTable_atBufferIndex_,
|
|
2626
|
+
"setTileIntersectionFunctionTable:atBufferIndex:");
|
|
2627
|
+
_MTL_PRIVATE_DEF_SEL(setTileIntersectionFunctionTables_withBufferRange_,
|
|
2628
|
+
"setTileIntersectionFunctionTables:withBufferRange:");
|
|
2629
|
+
_MTL_PRIVATE_DEF_SEL(setTileSamplerState_atIndex_,
|
|
2630
|
+
"setTileSamplerState:atIndex:");
|
|
2631
|
+
_MTL_PRIVATE_DEF_SEL(setTileSamplerState_lodMinClamp_lodMaxClamp_atIndex_,
|
|
2632
|
+
"setTileSamplerState:lodMinClamp:lodMaxClamp:atIndex:");
|
|
2633
|
+
_MTL_PRIVATE_DEF_SEL(setTileSamplerStates_lodMinClamps_lodMaxClamps_withRange_,
|
|
2634
|
+
"setTileSamplerStates:lodMinClamps:lodMaxClamps:withRange:");
|
|
2635
|
+
_MTL_PRIVATE_DEF_SEL(setTileSamplerStates_withRange_,
|
|
2636
|
+
"setTileSamplerStates:withRange:");
|
|
2637
|
+
_MTL_PRIVATE_DEF_SEL(setTileTexture_atIndex_,
|
|
2638
|
+
"setTileTexture:atIndex:");
|
|
2639
|
+
_MTL_PRIVATE_DEF_SEL(setTileTextures_withRange_,
|
|
2640
|
+
"setTileTextures:withRange:");
|
|
2641
|
+
_MTL_PRIVATE_DEF_SEL(setTileVisibleFunctionTable_atBufferIndex_,
|
|
2642
|
+
"setTileVisibleFunctionTable:atBufferIndex:");
|
|
2643
|
+
_MTL_PRIVATE_DEF_SEL(setTileVisibleFunctionTables_withBufferRange_,
|
|
2644
|
+
"setTileVisibleFunctionTables:withBufferRange:");
|
|
2645
|
+
_MTL_PRIVATE_DEF_SEL(setTileWidth_,
|
|
2646
|
+
"setTileWidth:");
|
|
2647
|
+
_MTL_PRIVATE_DEF_SEL(setTransformationMatrixBuffer_,
|
|
2648
|
+
"setTransformationMatrixBuffer:");
|
|
2649
|
+
_MTL_PRIVATE_DEF_SEL(setTransformationMatrixBufferOffset_,
|
|
2650
|
+
"setTransformationMatrixBufferOffset:");
|
|
2651
|
+
_MTL_PRIVATE_DEF_SEL(setTransformationMatrixLayout_,
|
|
2652
|
+
"setTransformationMatrixLayout:");
|
|
2653
|
+
_MTL_PRIVATE_DEF_SEL(setTriangleCount_,
|
|
2654
|
+
"setTriangleCount:");
|
|
2655
|
+
_MTL_PRIVATE_DEF_SEL(setTriangleFillMode_,
|
|
2656
|
+
"setTriangleFillMode:");
|
|
2657
|
+
_MTL_PRIVATE_DEF_SEL(setType_,
|
|
2658
|
+
"setType:");
|
|
2659
|
+
_MTL_PRIVATE_DEF_SEL(setUrl_,
|
|
2660
|
+
"setUrl:");
|
|
2661
|
+
_MTL_PRIVATE_DEF_SEL(setUsage_,
|
|
2662
|
+
"setUsage:");
|
|
2663
|
+
_MTL_PRIVATE_DEF_SEL(setVertexAccelerationStructure_atBufferIndex_,
|
|
2664
|
+
"setVertexAccelerationStructure:atBufferIndex:");
|
|
2665
|
+
_MTL_PRIVATE_DEF_SEL(setVertexAdditionalBinaryFunctions_,
|
|
2666
|
+
"setVertexAdditionalBinaryFunctions:");
|
|
2667
|
+
_MTL_PRIVATE_DEF_SEL(setVertexAmplificationCount_viewMappings_,
|
|
2668
|
+
"setVertexAmplificationCount:viewMappings:");
|
|
2669
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBuffer_,
|
|
2670
|
+
"setVertexBuffer:");
|
|
2671
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBuffer_offset_atIndex_,
|
|
2672
|
+
"setVertexBuffer:offset:atIndex:");
|
|
2673
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBuffer_offset_attributeStride_atIndex_,
|
|
2674
|
+
"setVertexBuffer:offset:attributeStride:atIndex:");
|
|
2675
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBufferOffset_,
|
|
2676
|
+
"setVertexBufferOffset:");
|
|
2677
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBufferOffset_atIndex_,
|
|
2678
|
+
"setVertexBufferOffset:atIndex:");
|
|
2679
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBufferOffset_attributeStride_atIndex_,
|
|
2680
|
+
"setVertexBufferOffset:attributeStride:atIndex:");
|
|
2681
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBuffers_,
|
|
2682
|
+
"setVertexBuffers:");
|
|
2683
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBuffers_offsets_attributeStrides_withRange_,
|
|
2684
|
+
"setVertexBuffers:offsets:attributeStrides:withRange:");
|
|
2685
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBuffers_offsets_withRange_,
|
|
2686
|
+
"setVertexBuffers:offsets:withRange:");
|
|
2687
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBytes_length_atIndex_,
|
|
2688
|
+
"setVertexBytes:length:atIndex:");
|
|
2689
|
+
_MTL_PRIVATE_DEF_SEL(setVertexBytes_length_attributeStride_atIndex_,
|
|
2690
|
+
"setVertexBytes:length:attributeStride:atIndex:");
|
|
2691
|
+
_MTL_PRIVATE_DEF_SEL(setVertexDescriptor_,
|
|
2692
|
+
"setVertexDescriptor:");
|
|
2693
|
+
_MTL_PRIVATE_DEF_SEL(setVertexFormat_,
|
|
2694
|
+
"setVertexFormat:");
|
|
2695
|
+
_MTL_PRIVATE_DEF_SEL(setVertexFunction_,
|
|
2696
|
+
"setVertexFunction:");
|
|
2697
|
+
_MTL_PRIVATE_DEF_SEL(setVertexFunctionDescriptor_,
|
|
2698
|
+
"setVertexFunctionDescriptor:");
|
|
2699
|
+
_MTL_PRIVATE_DEF_SEL(setVertexIntersectionFunctionTable_atBufferIndex_,
|
|
2700
|
+
"setVertexIntersectionFunctionTable:atBufferIndex:");
|
|
2701
|
+
_MTL_PRIVATE_DEF_SEL(setVertexIntersectionFunctionTables_withBufferRange_,
|
|
2702
|
+
"setVertexIntersectionFunctionTables:withBufferRange:");
|
|
2703
|
+
_MTL_PRIVATE_DEF_SEL(setVertexLinkedFunctions_,
|
|
2704
|
+
"setVertexLinkedFunctions:");
|
|
2705
|
+
_MTL_PRIVATE_DEF_SEL(setVertexPreloadedLibraries_,
|
|
2706
|
+
"setVertexPreloadedLibraries:");
|
|
2707
|
+
_MTL_PRIVATE_DEF_SEL(setVertexSamplerState_atIndex_,
|
|
2708
|
+
"setVertexSamplerState:atIndex:");
|
|
2709
|
+
_MTL_PRIVATE_DEF_SEL(setVertexSamplerState_lodMinClamp_lodMaxClamp_atIndex_,
|
|
2710
|
+
"setVertexSamplerState:lodMinClamp:lodMaxClamp:atIndex:");
|
|
2711
|
+
_MTL_PRIVATE_DEF_SEL(setVertexSamplerStates_lodMinClamps_lodMaxClamps_withRange_,
|
|
2712
|
+
"setVertexSamplerStates:lodMinClamps:lodMaxClamps:withRange:");
|
|
2713
|
+
_MTL_PRIVATE_DEF_SEL(setVertexSamplerStates_withRange_,
|
|
2714
|
+
"setVertexSamplerStates:withRange:");
|
|
2715
|
+
_MTL_PRIVATE_DEF_SEL(setVertexStaticLinkingDescriptor_,
|
|
2716
|
+
"setVertexStaticLinkingDescriptor:");
|
|
2717
|
+
_MTL_PRIVATE_DEF_SEL(setVertexStride_,
|
|
2718
|
+
"setVertexStride:");
|
|
2719
|
+
_MTL_PRIVATE_DEF_SEL(setVertexTexture_atIndex_,
|
|
2720
|
+
"setVertexTexture:atIndex:");
|
|
2721
|
+
_MTL_PRIVATE_DEF_SEL(setVertexTextures_withRange_,
|
|
2722
|
+
"setVertexTextures:withRange:");
|
|
2723
|
+
_MTL_PRIVATE_DEF_SEL(setVertexVisibleFunctionTable_atBufferIndex_,
|
|
2724
|
+
"setVertexVisibleFunctionTable:atBufferIndex:");
|
|
2725
|
+
_MTL_PRIVATE_DEF_SEL(setVertexVisibleFunctionTables_withBufferRange_,
|
|
2726
|
+
"setVertexVisibleFunctionTables:withBufferRange:");
|
|
2727
|
+
_MTL_PRIVATE_DEF_SEL(setViewport_,
|
|
2728
|
+
"setViewport:");
|
|
2729
|
+
_MTL_PRIVATE_DEF_SEL(setViewports_count_,
|
|
2730
|
+
"setViewports:count:");
|
|
2731
|
+
_MTL_PRIVATE_DEF_SEL(setVisibilityResultBuffer_,
|
|
2732
|
+
"setVisibilityResultBuffer:");
|
|
2733
|
+
_MTL_PRIVATE_DEF_SEL(setVisibilityResultMode_offset_,
|
|
2734
|
+
"setVisibilityResultMode:offset:");
|
|
2735
|
+
_MTL_PRIVATE_DEF_SEL(setVisibilityResultType_,
|
|
2736
|
+
"setVisibilityResultType:");
|
|
2737
|
+
_MTL_PRIVATE_DEF_SEL(setVisibleFunctionTable_atBufferIndex_,
|
|
2738
|
+
"setVisibleFunctionTable:atBufferIndex:");
|
|
2739
|
+
_MTL_PRIVATE_DEF_SEL(setVisibleFunctionTable_atIndex_,
|
|
2740
|
+
"setVisibleFunctionTable:atIndex:");
|
|
2741
|
+
_MTL_PRIVATE_DEF_SEL(setVisibleFunctionTables_withBufferRange_,
|
|
2742
|
+
"setVisibleFunctionTables:withBufferRange:");
|
|
2743
|
+
_MTL_PRIVATE_DEF_SEL(setVisibleFunctionTables_withRange_,
|
|
2744
|
+
"setVisibleFunctionTables:withRange:");
|
|
2745
|
+
_MTL_PRIVATE_DEF_SEL(setWidth_,
|
|
2746
|
+
"setWidth:");
|
|
2747
|
+
_MTL_PRIVATE_DEF_SEL(setWriteMask_,
|
|
2748
|
+
"setWriteMask:");
|
|
2749
|
+
_MTL_PRIVATE_DEF_SEL(shaderReflection,
|
|
2750
|
+
"shaderReflection");
|
|
2751
|
+
_MTL_PRIVATE_DEF_SEL(shaderValidation,
|
|
2752
|
+
"shaderValidation");
|
|
2753
|
+
_MTL_PRIVATE_DEF_SEL(sharedCaptureManager,
|
|
2754
|
+
"sharedCaptureManager");
|
|
2755
|
+
_MTL_PRIVATE_DEF_SEL(sharedListener,
|
|
2756
|
+
"sharedListener");
|
|
2757
|
+
_MTL_PRIVATE_DEF_SEL(shouldMaximizeConcurrentCompilation,
|
|
2758
|
+
"shouldMaximizeConcurrentCompilation");
|
|
2759
|
+
_MTL_PRIVATE_DEF_SEL(signalDrawable_,
|
|
2760
|
+
"signalDrawable:");
|
|
2761
|
+
_MTL_PRIVATE_DEF_SEL(signalEvent_value_,
|
|
2762
|
+
"signalEvent:value:");
|
|
2763
|
+
_MTL_PRIVATE_DEF_SEL(signaledValue,
|
|
2764
|
+
"signaledValue");
|
|
2765
|
+
_MTL_PRIVATE_DEF_SEL(size,
|
|
2766
|
+
"size");
|
|
2767
|
+
_MTL_PRIVATE_DEF_SEL(sizeOfCounterHeapEntry_,
|
|
2768
|
+
"sizeOfCounterHeapEntry:");
|
|
2769
|
+
_MTL_PRIVATE_DEF_SEL(slice,
|
|
2770
|
+
"slice");
|
|
2771
|
+
_MTL_PRIVATE_DEF_SEL(sliceRange,
|
|
2772
|
+
"sliceRange");
|
|
2773
|
+
_MTL_PRIVATE_DEF_SEL(source,
|
|
2774
|
+
"source");
|
|
2775
|
+
_MTL_PRIVATE_DEF_SEL(sourceAlphaBlendFactor,
|
|
2776
|
+
"sourceAlphaBlendFactor");
|
|
2777
|
+
_MTL_PRIVATE_DEF_SEL(sourceRGBBlendFactor,
|
|
2778
|
+
"sourceRGBBlendFactor");
|
|
2779
|
+
_MTL_PRIVATE_DEF_SEL(sparseBufferTier,
|
|
2780
|
+
"sparseBufferTier");
|
|
2781
|
+
_MTL_PRIVATE_DEF_SEL(sparsePageSize,
|
|
2782
|
+
"sparsePageSize");
|
|
2783
|
+
_MTL_PRIVATE_DEF_SEL(sparseTextureTier,
|
|
2784
|
+
"sparseTextureTier");
|
|
2785
|
+
_MTL_PRIVATE_DEF_SEL(sparseTileSizeInBytes,
|
|
2786
|
+
"sparseTileSizeInBytes");
|
|
2787
|
+
_MTL_PRIVATE_DEF_SEL(sparseTileSizeInBytesForSparsePageSize_,
|
|
2788
|
+
"sparseTileSizeInBytesForSparsePageSize:");
|
|
2789
|
+
_MTL_PRIVATE_DEF_SEL(sparseTileSizeWithTextureType_pixelFormat_sampleCount_,
|
|
2790
|
+
"sparseTileSizeWithTextureType:pixelFormat:sampleCount:");
|
|
2791
|
+
_MTL_PRIVATE_DEF_SEL(sparseTileSizeWithTextureType_pixelFormat_sampleCount_sparsePageSize_,
|
|
2792
|
+
"sparseTileSizeWithTextureType:pixelFormat:sampleCount:sparsePageSize:");
|
|
2793
|
+
_MTL_PRIVATE_DEF_SEL(specializedName,
|
|
2794
|
+
"specializedName");
|
|
2795
|
+
_MTL_PRIVATE_DEF_SEL(stageInputAttributes,
|
|
2796
|
+
"stageInputAttributes");
|
|
2797
|
+
_MTL_PRIVATE_DEF_SEL(stageInputDescriptor,
|
|
2798
|
+
"stageInputDescriptor");
|
|
2799
|
+
_MTL_PRIVATE_DEF_SEL(stageInputOutputDescriptor,
|
|
2800
|
+
"stageInputOutputDescriptor");
|
|
2801
|
+
_MTL_PRIVATE_DEF_SEL(stages,
|
|
2802
|
+
"stages");
|
|
2803
|
+
_MTL_PRIVATE_DEF_SEL(startCaptureWithCommandQueue_,
|
|
2804
|
+
"startCaptureWithCommandQueue:");
|
|
2805
|
+
_MTL_PRIVATE_DEF_SEL(startCaptureWithDescriptor_error_,
|
|
2806
|
+
"startCaptureWithDescriptor:error:");
|
|
2807
|
+
_MTL_PRIVATE_DEF_SEL(startCaptureWithDevice_,
|
|
2808
|
+
"startCaptureWithDevice:");
|
|
2809
|
+
_MTL_PRIVATE_DEF_SEL(startCaptureWithScope_,
|
|
2810
|
+
"startCaptureWithScope:");
|
|
2811
|
+
_MTL_PRIVATE_DEF_SEL(startOfEncoderSampleIndex,
|
|
2812
|
+
"startOfEncoderSampleIndex");
|
|
2813
|
+
_MTL_PRIVATE_DEF_SEL(startOfFragmentSampleIndex,
|
|
2814
|
+
"startOfFragmentSampleIndex");
|
|
2815
|
+
_MTL_PRIVATE_DEF_SEL(startOfVertexSampleIndex,
|
|
2816
|
+
"startOfVertexSampleIndex");
|
|
2817
|
+
_MTL_PRIVATE_DEF_SEL(staticLinkingDescriptor,
|
|
2818
|
+
"staticLinkingDescriptor");
|
|
2819
|
+
_MTL_PRIVATE_DEF_SEL(staticThreadgroupMemoryLength,
|
|
2820
|
+
"staticThreadgroupMemoryLength");
|
|
2821
|
+
_MTL_PRIVATE_DEF_SEL(status,
|
|
2822
|
+
"status");
|
|
2823
|
+
_MTL_PRIVATE_DEF_SEL(stencilAttachment,
|
|
2824
|
+
"stencilAttachment");
|
|
2825
|
+
_MTL_PRIVATE_DEF_SEL(stencilAttachmentPixelFormat,
|
|
2826
|
+
"stencilAttachmentPixelFormat");
|
|
2827
|
+
_MTL_PRIVATE_DEF_SEL(stencilCompareFunction,
|
|
2828
|
+
"stencilCompareFunction");
|
|
2829
|
+
_MTL_PRIVATE_DEF_SEL(stencilFailureOperation,
|
|
2830
|
+
"stencilFailureOperation");
|
|
2831
|
+
_MTL_PRIVATE_DEF_SEL(stencilResolveFilter,
|
|
2832
|
+
"stencilResolveFilter");
|
|
2833
|
+
_MTL_PRIVATE_DEF_SEL(stepFunction,
|
|
2834
|
+
"stepFunction");
|
|
2835
|
+
_MTL_PRIVATE_DEF_SEL(stepRate,
|
|
2836
|
+
"stepRate");
|
|
2837
|
+
_MTL_PRIVATE_DEF_SEL(stopCapture,
|
|
2838
|
+
"stopCapture");
|
|
2839
|
+
_MTL_PRIVATE_DEF_SEL(storageMode,
|
|
2840
|
+
"storageMode");
|
|
2841
|
+
_MTL_PRIVATE_DEF_SEL(storeAction,
|
|
2842
|
+
"storeAction");
|
|
2843
|
+
_MTL_PRIVATE_DEF_SEL(storeActionOptions,
|
|
2844
|
+
"storeActionOptions");
|
|
2845
|
+
_MTL_PRIVATE_DEF_SEL(stride,
|
|
2846
|
+
"stride");
|
|
2847
|
+
_MTL_PRIVATE_DEF_SEL(strides,
|
|
2848
|
+
"strides");
|
|
2849
|
+
_MTL_PRIVATE_DEF_SEL(structType,
|
|
2850
|
+
"structType");
|
|
2851
|
+
_MTL_PRIVATE_DEF_SEL(supportAddingBinaryFunctions,
|
|
2852
|
+
"supportAddingBinaryFunctions");
|
|
2853
|
+
_MTL_PRIVATE_DEF_SEL(supportAddingFragmentBinaryFunctions,
|
|
2854
|
+
"supportAddingFragmentBinaryFunctions");
|
|
2855
|
+
_MTL_PRIVATE_DEF_SEL(supportAddingVertexBinaryFunctions,
|
|
2856
|
+
"supportAddingVertexBinaryFunctions");
|
|
2857
|
+
_MTL_PRIVATE_DEF_SEL(supportArgumentBuffers,
|
|
2858
|
+
"supportArgumentBuffers");
|
|
2859
|
+
_MTL_PRIVATE_DEF_SEL(supportAttributeStrides,
|
|
2860
|
+
"supportAttributeStrides");
|
|
2861
|
+
_MTL_PRIVATE_DEF_SEL(supportBinaryLinking,
|
|
2862
|
+
"supportBinaryLinking");
|
|
2863
|
+
_MTL_PRIVATE_DEF_SEL(supportColorAttachmentMapping,
|
|
2864
|
+
"supportColorAttachmentMapping");
|
|
2865
|
+
_MTL_PRIVATE_DEF_SEL(supportDynamicAttributeStride,
|
|
2866
|
+
"supportDynamicAttributeStride");
|
|
2867
|
+
_MTL_PRIVATE_DEF_SEL(supportFragmentBinaryLinking,
|
|
2868
|
+
"supportFragmentBinaryLinking");
|
|
2869
|
+
_MTL_PRIVATE_DEF_SEL(supportIndirectCommandBuffers,
|
|
2870
|
+
"supportIndirectCommandBuffers");
|
|
2871
|
+
_MTL_PRIVATE_DEF_SEL(supportMeshBinaryLinking,
|
|
2872
|
+
"supportMeshBinaryLinking");
|
|
2873
|
+
_MTL_PRIVATE_DEF_SEL(supportObjectBinaryLinking,
|
|
2874
|
+
"supportObjectBinaryLinking");
|
|
2875
|
+
_MTL_PRIVATE_DEF_SEL(supportRayTracing,
|
|
2876
|
+
"supportRayTracing");
|
|
2877
|
+
_MTL_PRIVATE_DEF_SEL(supportVertexBinaryLinking,
|
|
2878
|
+
"supportVertexBinaryLinking");
|
|
2879
|
+
_MTL_PRIVATE_DEF_SEL(supports32BitFloatFiltering,
|
|
2880
|
+
"supports32BitFloatFiltering");
|
|
2881
|
+
_MTL_PRIVATE_DEF_SEL(supports32BitMSAA,
|
|
2882
|
+
"supports32BitMSAA");
|
|
2883
|
+
_MTL_PRIVATE_DEF_SEL(supportsBCTextureCompression,
|
|
2884
|
+
"supportsBCTextureCompression");
|
|
2885
|
+
_MTL_PRIVATE_DEF_SEL(supportsCounterSampling_,
|
|
2886
|
+
"supportsCounterSampling:");
|
|
2887
|
+
_MTL_PRIVATE_DEF_SEL(supportsDestination_,
|
|
2888
|
+
"supportsDestination:");
|
|
2889
|
+
_MTL_PRIVATE_DEF_SEL(supportsDynamicLibraries,
|
|
2890
|
+
"supportsDynamicLibraries");
|
|
2891
|
+
_MTL_PRIVATE_DEF_SEL(supportsFamily_,
|
|
2892
|
+
"supportsFamily:");
|
|
2893
|
+
_MTL_PRIVATE_DEF_SEL(supportsFeatureSet_,
|
|
2894
|
+
"supportsFeatureSet:");
|
|
2895
|
+
_MTL_PRIVATE_DEF_SEL(supportsFunctionPointers,
|
|
2896
|
+
"supportsFunctionPointers");
|
|
2897
|
+
_MTL_PRIVATE_DEF_SEL(supportsFunctionPointersFromRender,
|
|
2898
|
+
"supportsFunctionPointersFromRender");
|
|
2899
|
+
_MTL_PRIVATE_DEF_SEL(supportsPrimitiveMotionBlur,
|
|
2900
|
+
"supportsPrimitiveMotionBlur");
|
|
2901
|
+
_MTL_PRIVATE_DEF_SEL(supportsPullModelInterpolation,
|
|
2902
|
+
"supportsPullModelInterpolation");
|
|
2903
|
+
_MTL_PRIVATE_DEF_SEL(supportsQueryTextureLOD,
|
|
2904
|
+
"supportsQueryTextureLOD");
|
|
2905
|
+
_MTL_PRIVATE_DEF_SEL(supportsRasterizationRateMapWithLayerCount_,
|
|
2906
|
+
"supportsRasterizationRateMapWithLayerCount:");
|
|
2907
|
+
_MTL_PRIVATE_DEF_SEL(supportsRaytracing,
|
|
2908
|
+
"supportsRaytracing");
|
|
2909
|
+
_MTL_PRIVATE_DEF_SEL(supportsRaytracingFromRender,
|
|
2910
|
+
"supportsRaytracingFromRender");
|
|
2911
|
+
_MTL_PRIVATE_DEF_SEL(supportsRenderDynamicLibraries,
|
|
2912
|
+
"supportsRenderDynamicLibraries");
|
|
2913
|
+
_MTL_PRIVATE_DEF_SEL(supportsShaderBarycentricCoordinates,
|
|
2914
|
+
"supportsShaderBarycentricCoordinates");
|
|
2915
|
+
_MTL_PRIVATE_DEF_SEL(supportsTextureSampleCount_,
|
|
2916
|
+
"supportsTextureSampleCount:");
|
|
2917
|
+
_MTL_PRIVATE_DEF_SEL(supportsVertexAmplificationCount_,
|
|
2918
|
+
"supportsVertexAmplificationCount:");
|
|
2919
|
+
_MTL_PRIVATE_DEF_SEL(swizzle,
|
|
2920
|
+
"swizzle");
|
|
2921
|
+
_MTL_PRIVATE_DEF_SEL(synchronizeResource_,
|
|
2922
|
+
"synchronizeResource:");
|
|
2923
|
+
_MTL_PRIVATE_DEF_SEL(synchronizeTexture_slice_level_,
|
|
2924
|
+
"synchronizeTexture:slice:level:");
|
|
2925
|
+
_MTL_PRIVATE_DEF_SEL(tAddressMode,
|
|
2926
|
+
"tAddressMode");
|
|
2927
|
+
_MTL_PRIVATE_DEF_SEL(tailSizeInBytes,
|
|
2928
|
+
"tailSizeInBytes");
|
|
2929
|
+
_MTL_PRIVATE_DEF_SEL(tensorDataType,
|
|
2930
|
+
"tensorDataType");
|
|
2931
|
+
_MTL_PRIVATE_DEF_SEL(tensorReferenceType,
|
|
2932
|
+
"tensorReferenceType");
|
|
2933
|
+
_MTL_PRIVATE_DEF_SEL(tensorSizeAndAlignWithDescriptor_,
|
|
2934
|
+
"tensorSizeAndAlignWithDescriptor:");
|
|
2935
|
+
_MTL_PRIVATE_DEF_SEL(tessellationControlPointIndexType,
|
|
2936
|
+
"tessellationControlPointIndexType");
|
|
2937
|
+
_MTL_PRIVATE_DEF_SEL(tessellationFactorFormat,
|
|
2938
|
+
"tessellationFactorFormat");
|
|
2939
|
+
_MTL_PRIVATE_DEF_SEL(tessellationFactorStepFunction,
|
|
2940
|
+
"tessellationFactorStepFunction");
|
|
2941
|
+
_MTL_PRIVATE_DEF_SEL(tessellationOutputWindingOrder,
|
|
2942
|
+
"tessellationOutputWindingOrder");
|
|
2943
|
+
_MTL_PRIVATE_DEF_SEL(tessellationPartitionMode,
|
|
2944
|
+
"tessellationPartitionMode");
|
|
2945
|
+
_MTL_PRIVATE_DEF_SEL(texture,
|
|
2946
|
+
"texture");
|
|
2947
|
+
_MTL_PRIVATE_DEF_SEL(texture2DDescriptorWithPixelFormat_width_height_mipmapped_,
|
|
2948
|
+
"texture2DDescriptorWithPixelFormat:width:height:mipmapped:");
|
|
2949
|
+
_MTL_PRIVATE_DEF_SEL(textureBarrier,
|
|
2950
|
+
"textureBarrier");
|
|
2951
|
+
_MTL_PRIVATE_DEF_SEL(textureBufferDescriptorWithPixelFormat_width_resourceOptions_usage_,
|
|
2952
|
+
"textureBufferDescriptorWithPixelFormat:width:resourceOptions:usage:");
|
|
2953
|
+
_MTL_PRIVATE_DEF_SEL(textureCubeDescriptorWithPixelFormat_size_mipmapped_,
|
|
2954
|
+
"textureCubeDescriptorWithPixelFormat:size:mipmapped:");
|
|
2955
|
+
_MTL_PRIVATE_DEF_SEL(textureDataType,
|
|
2956
|
+
"textureDataType");
|
|
2957
|
+
_MTL_PRIVATE_DEF_SEL(textureReferenceType,
|
|
2958
|
+
"textureReferenceType");
|
|
2959
|
+
_MTL_PRIVATE_DEF_SEL(textureType,
|
|
2960
|
+
"textureType");
|
|
2961
|
+
_MTL_PRIVATE_DEF_SEL(threadExecutionWidth,
|
|
2962
|
+
"threadExecutionWidth");
|
|
2963
|
+
_MTL_PRIVATE_DEF_SEL(threadGroupSizeIsMultipleOfThreadExecutionWidth,
|
|
2964
|
+
"threadGroupSizeIsMultipleOfThreadExecutionWidth");
|
|
2965
|
+
_MTL_PRIVATE_DEF_SEL(threadgroupMemoryAlignment,
|
|
2966
|
+
"threadgroupMemoryAlignment");
|
|
2967
|
+
_MTL_PRIVATE_DEF_SEL(threadgroupMemoryDataSize,
|
|
2968
|
+
"threadgroupMemoryDataSize");
|
|
2969
|
+
_MTL_PRIVATE_DEF_SEL(threadgroupMemoryLength,
|
|
2970
|
+
"threadgroupMemoryLength");
|
|
2971
|
+
_MTL_PRIVATE_DEF_SEL(threadgroupSizeMatchesTileSize,
|
|
2972
|
+
"threadgroupSizeMatchesTileSize");
|
|
2973
|
+
_MTL_PRIVATE_DEF_SEL(tileAdditionalBinaryFunctions,
|
|
2974
|
+
"tileAdditionalBinaryFunctions");
|
|
2975
|
+
_MTL_PRIVATE_DEF_SEL(tileArguments,
|
|
2976
|
+
"tileArguments");
|
|
2977
|
+
_MTL_PRIVATE_DEF_SEL(tileBindings,
|
|
2978
|
+
"tileBindings");
|
|
2979
|
+
_MTL_PRIVATE_DEF_SEL(tileBuffers,
|
|
2980
|
+
"tileBuffers");
|
|
2981
|
+
_MTL_PRIVATE_DEF_SEL(tileFunction,
|
|
2982
|
+
"tileFunction");
|
|
2983
|
+
_MTL_PRIVATE_DEF_SEL(tileFunctionDescriptor,
|
|
2984
|
+
"tileFunctionDescriptor");
|
|
2985
|
+
_MTL_PRIVATE_DEF_SEL(tileHeight,
|
|
2986
|
+
"tileHeight");
|
|
2987
|
+
_MTL_PRIVATE_DEF_SEL(tileLinkingDescriptor,
|
|
2988
|
+
"tileLinkingDescriptor");
|
|
2989
|
+
_MTL_PRIVATE_DEF_SEL(tileWidth,
|
|
2990
|
+
"tileWidth");
|
|
2991
|
+
_MTL_PRIVATE_DEF_SEL(transformationMatrixBuffer,
|
|
2992
|
+
"transformationMatrixBuffer");
|
|
2993
|
+
_MTL_PRIVATE_DEF_SEL(transformationMatrixBufferOffset,
|
|
2994
|
+
"transformationMatrixBufferOffset");
|
|
2995
|
+
_MTL_PRIVATE_DEF_SEL(transformationMatrixLayout,
|
|
2996
|
+
"transformationMatrixLayout");
|
|
2997
|
+
_MTL_PRIVATE_DEF_SEL(triangleCount,
|
|
2998
|
+
"triangleCount");
|
|
2999
|
+
_MTL_PRIVATE_DEF_SEL(tryCancel,
|
|
3000
|
+
"tryCancel");
|
|
3001
|
+
_MTL_PRIVATE_DEF_SEL(type,
|
|
3002
|
+
"type");
|
|
3003
|
+
_MTL_PRIVATE_DEF_SEL(updateBufferMappings_heap_operations_count_,
|
|
3004
|
+
"updateBufferMappings:heap:operations:count:");
|
|
3005
|
+
_MTL_PRIVATE_DEF_SEL(updateFence_,
|
|
3006
|
+
"updateFence:");
|
|
3007
|
+
_MTL_PRIVATE_DEF_SEL(updateFence_afterEncoderStages_,
|
|
3008
|
+
"updateFence:afterEncoderStages:");
|
|
3009
|
+
_MTL_PRIVATE_DEF_SEL(updateFence_afterStages_,
|
|
3010
|
+
"updateFence:afterStages:");
|
|
3011
|
+
_MTL_PRIVATE_DEF_SEL(updateTextureMapping_mode_indirectBuffer_indirectBufferOffset_,
|
|
3012
|
+
"updateTextureMapping:mode:indirectBuffer:indirectBufferOffset:");
|
|
3013
|
+
_MTL_PRIVATE_DEF_SEL(updateTextureMapping_mode_region_mipLevel_slice_,
|
|
3014
|
+
"updateTextureMapping:mode:region:mipLevel:slice:");
|
|
3015
|
+
_MTL_PRIVATE_DEF_SEL(updateTextureMappings_heap_operations_count_,
|
|
3016
|
+
"updateTextureMappings:heap:operations:count:");
|
|
3017
|
+
_MTL_PRIVATE_DEF_SEL(updateTextureMappings_mode_regions_mipLevels_slices_numRegions_,
|
|
3018
|
+
"updateTextureMappings:mode:regions:mipLevels:slices:numRegions:");
|
|
3019
|
+
_MTL_PRIVATE_DEF_SEL(url,
|
|
3020
|
+
"url");
|
|
3021
|
+
_MTL_PRIVATE_DEF_SEL(usage,
|
|
3022
|
+
"usage");
|
|
3023
|
+
_MTL_PRIVATE_DEF_SEL(useHeap_,
|
|
3024
|
+
"useHeap:");
|
|
3025
|
+
_MTL_PRIVATE_DEF_SEL(useHeap_stages_,
|
|
3026
|
+
"useHeap:stages:");
|
|
3027
|
+
_MTL_PRIVATE_DEF_SEL(useHeaps_count_,
|
|
3028
|
+
"useHeaps:count:");
|
|
3029
|
+
_MTL_PRIVATE_DEF_SEL(useHeaps_count_stages_,
|
|
3030
|
+
"useHeaps:count:stages:");
|
|
3031
|
+
_MTL_PRIVATE_DEF_SEL(useResidencySet_,
|
|
3032
|
+
"useResidencySet:");
|
|
3033
|
+
_MTL_PRIVATE_DEF_SEL(useResidencySets_count_,
|
|
3034
|
+
"useResidencySets:count:");
|
|
3035
|
+
_MTL_PRIVATE_DEF_SEL(useResource_usage_,
|
|
3036
|
+
"useResource:usage:");
|
|
3037
|
+
_MTL_PRIVATE_DEF_SEL(useResource_usage_stages_,
|
|
3038
|
+
"useResource:usage:stages:");
|
|
3039
|
+
_MTL_PRIVATE_DEF_SEL(useResources_count_usage_,
|
|
3040
|
+
"useResources:count:usage:");
|
|
3041
|
+
_MTL_PRIVATE_DEF_SEL(useResources_count_usage_stages_,
|
|
3042
|
+
"useResources:count:usage:stages:");
|
|
3043
|
+
_MTL_PRIVATE_DEF_SEL(usedSize,
|
|
3044
|
+
"usedSize");
|
|
3045
|
+
_MTL_PRIVATE_DEF_SEL(vertexAdditionalBinaryFunctions,
|
|
3046
|
+
"vertexAdditionalBinaryFunctions");
|
|
3047
|
+
_MTL_PRIVATE_DEF_SEL(vertexArguments,
|
|
3048
|
+
"vertexArguments");
|
|
3049
|
+
_MTL_PRIVATE_DEF_SEL(vertexAttributes,
|
|
3050
|
+
"vertexAttributes");
|
|
3051
|
+
_MTL_PRIVATE_DEF_SEL(vertexBindings,
|
|
3052
|
+
"vertexBindings");
|
|
3053
|
+
_MTL_PRIVATE_DEF_SEL(vertexBuffer,
|
|
3054
|
+
"vertexBuffer");
|
|
3055
|
+
_MTL_PRIVATE_DEF_SEL(vertexBufferOffset,
|
|
3056
|
+
"vertexBufferOffset");
|
|
3057
|
+
_MTL_PRIVATE_DEF_SEL(vertexBuffers,
|
|
3058
|
+
"vertexBuffers");
|
|
3059
|
+
_MTL_PRIVATE_DEF_SEL(vertexDescriptor,
|
|
3060
|
+
"vertexDescriptor");
|
|
3061
|
+
_MTL_PRIVATE_DEF_SEL(vertexFormat,
|
|
3062
|
+
"vertexFormat");
|
|
3063
|
+
_MTL_PRIVATE_DEF_SEL(vertexFunction,
|
|
3064
|
+
"vertexFunction");
|
|
3065
|
+
_MTL_PRIVATE_DEF_SEL(vertexFunctionDescriptor,
|
|
3066
|
+
"vertexFunctionDescriptor");
|
|
3067
|
+
_MTL_PRIVATE_DEF_SEL(vertexLinkedFunctions,
|
|
3068
|
+
"vertexLinkedFunctions");
|
|
3069
|
+
_MTL_PRIVATE_DEF_SEL(vertexLinkingDescriptor,
|
|
3070
|
+
"vertexLinkingDescriptor");
|
|
3071
|
+
_MTL_PRIVATE_DEF_SEL(vertexPreloadedLibraries,
|
|
3072
|
+
"vertexPreloadedLibraries");
|
|
3073
|
+
_MTL_PRIVATE_DEF_SEL(vertexStaticLinkingDescriptor,
|
|
3074
|
+
"vertexStaticLinkingDescriptor");
|
|
3075
|
+
_MTL_PRIVATE_DEF_SEL(vertexStride,
|
|
3076
|
+
"vertexStride");
|
|
3077
|
+
_MTL_PRIVATE_DEF_SEL(vertical,
|
|
3078
|
+
"vertical");
|
|
3079
|
+
_MTL_PRIVATE_DEF_SEL(verticalSampleStorage,
|
|
3080
|
+
"verticalSampleStorage");
|
|
3081
|
+
_MTL_PRIVATE_DEF_SEL(visibilityResultBuffer,
|
|
3082
|
+
"visibilityResultBuffer");
|
|
3083
|
+
_MTL_PRIVATE_DEF_SEL(visibilityResultType,
|
|
3084
|
+
"visibilityResultType");
|
|
3085
|
+
_MTL_PRIVATE_DEF_SEL(visibleFunctionTableDescriptor,
|
|
3086
|
+
"visibleFunctionTableDescriptor");
|
|
3087
|
+
_MTL_PRIVATE_DEF_SEL(waitForDrawable_,
|
|
3088
|
+
"waitForDrawable:");
|
|
3089
|
+
_MTL_PRIVATE_DEF_SEL(waitForEvent_value_,
|
|
3090
|
+
"waitForEvent:value:");
|
|
3091
|
+
_MTL_PRIVATE_DEF_SEL(waitForFence_,
|
|
3092
|
+
"waitForFence:");
|
|
3093
|
+
_MTL_PRIVATE_DEF_SEL(waitForFence_beforeEncoderStages_,
|
|
3094
|
+
"waitForFence:beforeEncoderStages:");
|
|
3095
|
+
_MTL_PRIVATE_DEF_SEL(waitForFence_beforeStages_,
|
|
3096
|
+
"waitForFence:beforeStages:");
|
|
3097
|
+
_MTL_PRIVATE_DEF_SEL(waitUntilCompleted,
|
|
3098
|
+
"waitUntilCompleted");
|
|
3099
|
+
_MTL_PRIVATE_DEF_SEL(waitUntilScheduled,
|
|
3100
|
+
"waitUntilScheduled");
|
|
3101
|
+
_MTL_PRIVATE_DEF_SEL(waitUntilSignaledValue_timeoutMS_,
|
|
3102
|
+
"waitUntilSignaledValue:timeoutMS:");
|
|
3103
|
+
_MTL_PRIVATE_DEF_SEL(width,
|
|
3104
|
+
"width");
|
|
3105
|
+
_MTL_PRIVATE_DEF_SEL(writeCompactedAccelerationStructureSize_toBuffer_,
|
|
3106
|
+
"writeCompactedAccelerationStructureSize:toBuffer:");
|
|
3107
|
+
_MTL_PRIVATE_DEF_SEL(writeCompactedAccelerationStructureSize_toBuffer_offset_,
|
|
3108
|
+
"writeCompactedAccelerationStructureSize:toBuffer:offset:");
|
|
3109
|
+
_MTL_PRIVATE_DEF_SEL(writeCompactedAccelerationStructureSize_toBuffer_offset_sizeDataType_,
|
|
3110
|
+
"writeCompactedAccelerationStructureSize:toBuffer:offset:sizeDataType:");
|
|
3111
|
+
_MTL_PRIVATE_DEF_SEL(writeMask,
|
|
3112
|
+
"writeMask");
|
|
3113
|
+
_MTL_PRIVATE_DEF_SEL(writeTimestampIntoHeap_atIndex_,
|
|
3114
|
+
"writeTimestampIntoHeap:atIndex:");
|
|
3115
|
+
_MTL_PRIVATE_DEF_SEL(writeTimestampWithGranularity_afterStage_intoHeap_atIndex_,
|
|
3116
|
+
"writeTimestampWithGranularity:afterStage:intoHeap:atIndex:");
|
|
3117
|
+
_MTL_PRIVATE_DEF_SEL(writeTimestampWithGranularity_intoHeap_atIndex_,
|
|
3118
|
+
"writeTimestampWithGranularity:intoHeap:atIndex:");
|
|
3119
|
+
|
|
3120
|
+
}
|