mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-08 03:51:39 +12:00
metal: initial support
This commit is contained in:
parent
29d9ed7224
commit
f0547d1a71
167 changed files with 28839 additions and 1271 deletions
104
third_party/metal-cpp/Metal/MTLVisibleFunctionTable.hpp
vendored
Normal file
104
third_party/metal-cpp/Metal/MTLVisibleFunctionTable.hpp
vendored
Normal file
|
@ -0,0 +1,104 @@
|
|||
//-------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
//
|
||||
// Metal/MTLVisibleFunctionTable.hpp
|
||||
//
|
||||
// Copyright 2020-2023 Apple Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
//-------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "MTLDefines.hpp"
|
||||
#include "MTLHeaderBridge.hpp"
|
||||
#include "MTLPrivate.hpp"
|
||||
|
||||
#include <Foundation/Foundation.hpp>
|
||||
|
||||
#include "MTLResource.hpp"
|
||||
#include "MTLTypes.hpp"
|
||||
|
||||
namespace MTL
|
||||
{
|
||||
class VisibleFunctionTableDescriptor : public NS::Copying<VisibleFunctionTableDescriptor>
|
||||
{
|
||||
public:
|
||||
static class VisibleFunctionTableDescriptor* alloc();
|
||||
|
||||
class VisibleFunctionTableDescriptor* init();
|
||||
|
||||
static class VisibleFunctionTableDescriptor* visibleFunctionTableDescriptor();
|
||||
|
||||
NS::UInteger functionCount() const;
|
||||
void setFunctionCount(NS::UInteger functionCount);
|
||||
};
|
||||
|
||||
class VisibleFunctionTable : public NS::Referencing<VisibleFunctionTable, Resource>
|
||||
{
|
||||
public:
|
||||
MTL::ResourceID gpuResourceID() const;
|
||||
|
||||
void setFunction(const class FunctionHandle* function, NS::UInteger index);
|
||||
|
||||
void setFunctions(const class FunctionHandle* const functions[], NS::Range range);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
// static method: alloc
|
||||
_MTL_INLINE MTL::VisibleFunctionTableDescriptor* MTL::VisibleFunctionTableDescriptor::alloc()
|
||||
{
|
||||
return NS::Object::alloc<MTL::VisibleFunctionTableDescriptor>(_MTL_PRIVATE_CLS(MTLVisibleFunctionTableDescriptor));
|
||||
}
|
||||
|
||||
// method: init
|
||||
_MTL_INLINE MTL::VisibleFunctionTableDescriptor* MTL::VisibleFunctionTableDescriptor::init()
|
||||
{
|
||||
return NS::Object::init<MTL::VisibleFunctionTableDescriptor>();
|
||||
}
|
||||
|
||||
// static method: visibleFunctionTableDescriptor
|
||||
_MTL_INLINE MTL::VisibleFunctionTableDescriptor* MTL::VisibleFunctionTableDescriptor::visibleFunctionTableDescriptor()
|
||||
{
|
||||
return Object::sendMessage<MTL::VisibleFunctionTableDescriptor*>(_MTL_PRIVATE_CLS(MTLVisibleFunctionTableDescriptor), _MTL_PRIVATE_SEL(visibleFunctionTableDescriptor));
|
||||
}
|
||||
|
||||
// property: functionCount
|
||||
_MTL_INLINE NS::UInteger MTL::VisibleFunctionTableDescriptor::functionCount() const
|
||||
{
|
||||
return Object::sendMessage<NS::UInteger>(this, _MTL_PRIVATE_SEL(functionCount));
|
||||
}
|
||||
|
||||
_MTL_INLINE void MTL::VisibleFunctionTableDescriptor::setFunctionCount(NS::UInteger functionCount)
|
||||
{
|
||||
Object::sendMessage<void>(this, _MTL_PRIVATE_SEL(setFunctionCount_), functionCount);
|
||||
}
|
||||
|
||||
// property: gpuResourceID
|
||||
_MTL_INLINE MTL::ResourceID MTL::VisibleFunctionTable::gpuResourceID() const
|
||||
{
|
||||
return Object::sendMessage<MTL::ResourceID>(this, _MTL_PRIVATE_SEL(gpuResourceID));
|
||||
}
|
||||
|
||||
// method: setFunction:atIndex:
|
||||
_MTL_INLINE void MTL::VisibleFunctionTable::setFunction(const MTL::FunctionHandle* function, NS::UInteger index)
|
||||
{
|
||||
Object::sendMessage<void>(this, _MTL_PRIVATE_SEL(setFunction_atIndex_), function, index);
|
||||
}
|
||||
|
||||
// method: setFunctions:withRange:
|
||||
_MTL_INLINE void MTL::VisibleFunctionTable::setFunctions(const MTL::FunctionHandle* const functions[], NS::Range range)
|
||||
{
|
||||
Object::sendMessage<void>(this, _MTL_PRIVATE_SEL(setFunctions_withRange_), functions, range);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue