gpt4 book ai didi

ios - Metal - `include` 或 `import` 函数

转载 作者:可可西里 更新时间:2023-11-01 03:39:02 25 4
gpt4 key购买 nike

是否可以将 metal 文件导入或包含到另一个 metal 文件中?假设我有一个包含所有数学函数的 Metal 文件,我只会在我的 Metal 项目中需要时包含或导入它。可能吗?

我试过:

#include "sdf.metal"

我得到了错误:

metallib: Multiply defined symbols _Z4vmaxDv2_f Command/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin/metallib failed with exit code 1

更新:

这是我的两个着色器文件:

SDF.metal:

#ifndef MYAPP_METAL_CONSTANTS
#define MYAPP_METAL_CONSTANTS


#include <metal_stdlib>

namespace metal {

float kk(float2 v) {
return max(v.x, v.y);
}

float kkk(float3 v) {
return max(max(v.x, v.y), v.z);
}

}

#endif

和Shaders.metal:

#include <metal_stdlib>
#include "SDF.metal"
using namespace metal;


float fBoxCheap(float3 p, float3 b) { //cheap box
return kkk(abs(p) - b);
}


float map( float3 p )
{
float box2 = fBoxCheap(p-float3(0.0,3.0,0.0),float3(4.0,3.0,1.0));



return box2;
}

float3 getNormal( float3 p )
{
float3 e = float3( 0.001, 0.00, 0.00 );

float deltaX = map( p + e.xyy ) - map( p - e.xyy );
float deltaY = map( p + e.yxy ) - map( p - e.yxy );
float deltaZ = map( p + e.yyx ) - map( p - e.yyx );

return normalize( float3( deltaX, deltaY, deltaZ ) );
}

float trace( float3 origin, float3 direction, thread float3 &p )
{
float totalDistanceTraveled = 0.0;

for( int i=0; i <64; ++i)
{
p = origin + direction * totalDistanceTraveled;

float distanceFromPointOnRayToClosestObjectInScene = map( p );
totalDistanceTraveled += distanceFromPointOnRayToClosestObjectInScene;

if( distanceFromPointOnRayToClosestObjectInScene < 0.0001 )
{
break;
}

if( totalDistanceTraveled > 10000.0 )
{
totalDistanceTraveled = 0.0000;
break;
}
}

return totalDistanceTraveled;
}

float3 calculateLighting(float3 pointOnSurface, float3 surfaceNormal, float3 lightPosition, float3 cameraPosition)
{
float3 fromPointToLight = normalize(lightPosition - pointOnSurface);
float diffuseStrength = clamp( dot( surfaceNormal, fromPointToLight ), 0.0, 1.0 );

float3 diffuseColor = diffuseStrength * float3( 1.0, 0.0, 0.0 );
float3 reflectedLightVector = normalize( reflect( -fromPointToLight, surfaceNormal ) );

float3 fromPointToCamera = normalize( cameraPosition - pointOnSurface );
float specularStrength = pow( clamp( dot(reflectedLightVector, fromPointToCamera), 0.0, 1.0 ), 10.0 );

// Ensure that there is no specular lighting when there is no diffuse lighting.
specularStrength = min( diffuseStrength, specularStrength );
float3 specularColor = specularStrength * float3( 1.0 );

float3 finalColor = diffuseColor + specularColor;

return finalColor;
}

kernel void compute(texture2d<float, access::write> output [[texture(0)]],
constant float &timer [[buffer(1)]],
constant float &mousex [[buffer(2)]],
constant float &mousey [[buffer(3)]],
uint2 gid [[thread_position_in_grid]])
{
int width = output.get_width();
int height = output.get_height();
float2 uv = float2(gid) / float2(width, height);
uv = uv * 2.0 - 1.0;
// scale proportionately.
if(width > height) uv.x *= float(width)/float(height);
if(width < height) uv.y *= float(height)/float(width);


float posx = mousex * 2.0 - 1.0;
float posy = mousey * 2.0 - 1.0;

float3 cameraPosition = float3( posx * 0.01,posy * 0.01, -10.0 );


float3 cameraDirection = normalize( float3( uv.x, uv.y, 1.0) );

float3 pointOnSurface;
float distanceToClosestPointInScene = trace( cameraPosition, cameraDirection, pointOnSurface );

float3 finalColor = float3(1.0);
if( distanceToClosestPointInScene > 0.0 )
{
float3 lightPosition = float3( 5.0, 2.0, -10.0 );
float3 surfaceNormal = getNormal( pointOnSurface );
finalColor = calculateLighting( pointOnSurface, surfaceNormal, lightPosition, cameraPosition );
}
output.write(float4(float3(finalColor), 1), gid);

}

更新2:

和我的MetalView.swift:

import MetalKit

public class MetalView: MTKView, NSWindowDelegate {

var queue: MTLCommandQueue! = nil
var cps: MTLComputePipelineState! = nil

var timer: Float = 0
var timerBuffer: MTLBuffer!

var mousexBuffer: MTLBuffer!
var mouseyBuffer: MTLBuffer!
var pos: NSPoint!
var floatx: Float!
var floaty: Float!

required public init(coder: NSCoder) {
super.init(coder: coder)
self.framebufferOnly = false
device = MTLCreateSystemDefaultDevice()
registerShaders()
}


override public func drawRect(dirtyRect: NSRect) {
super.drawRect(dirtyRect)
if let drawable = currentDrawable {
let command_buffer = queue.commandBuffer()
let command_encoder = command_buffer.computeCommandEncoder()
command_encoder.setComputePipelineState(cps)
command_encoder.setTexture(drawable.texture, atIndex: 0)
command_encoder.setBuffer(timerBuffer, offset: 0, atIndex: 1)
command_encoder.setBuffer(mousexBuffer, offset: 0, atIndex: 2)
command_encoder.setBuffer(mouseyBuffer, offset: 0, atIndex: 3)
update()
let threadGroupCount = MTLSizeMake(8, 8, 1)
let threadGroups = MTLSizeMake(drawable.texture.width / threadGroupCount.width, drawable.texture.height / threadGroupCount.height, 1)
command_encoder.dispatchThreadgroups(threadGroups, threadsPerThreadgroup: threadGroupCount)
command_encoder.endEncoding()
command_buffer.presentDrawable(drawable)
command_buffer.commit()
}
}

func registerShaders() {
queue = device!.newCommandQueue()
do {
let library = device!.newDefaultLibrary()!
let kernel = library.newFunctionWithName("compute")!
timerBuffer = device!.newBufferWithLength(sizeof(Float), options: [])
mousexBuffer = device!.newBufferWithLength(sizeof(Float), options: [])
mouseyBuffer = device!.newBufferWithLength(sizeof(Float), options: [])
cps = try device!.newComputePipelineStateWithFunction(kernel)
} catch let e {
Swift.print("\(e)")
}
}

func update() {
timer += 0.01
var bufferPointer = timerBuffer.contents()
memcpy(bufferPointer, &timer, sizeof(Float))
bufferPointer = mousexBuffer.contents()
memcpy(bufferPointer, &floatx, sizeof(NSPoint))
bufferPointer = mouseyBuffer.contents()
memcpy(bufferPointer, &floaty, sizeof(NSPoint))
}

override public func mouseDragged(event: NSEvent) {
pos = convertPointToLayer(convertPoint(event.locationInWindow, fromView: nil))
let scale = layer!.contentsScale
pos.x *= scale
pos.y *= scale
floatx = Float(pos.x)
floaty = Float(pos.y)
debugPrint("Hello",pos.x,pos.y)
}
}

更新 3

按照 KickimusButticus 的解决方案实现后,着色器确实可以编译。但是我有另一个错误: enter image description here

最佳答案

您的设置不正确(编辑:我在其他答案和此答案的先前版本中的设置也是如此。)

您可以像在 C++ 中一样使用 header (Metal is based on C++11, after all...)。您只需要一个文件,我将其命名为 SDF.h。该文件包含没有命名空间声明的函数原型(prototype)声明。您需要在 using namespace metal; 其他文件中的声明之后 #include 它。确保头文件不是 .metal 文件并且它不是Compile Sources 列表中你的构建阶段。如果 header 被视为已编译的源代码,这很可能是导致 CompilerError 的原因。

SDF.h:

// SDFHeaders.metal
#ifndef SDF_HEADERS
#define SDF_HEADERS

float kk(float2 v);
float kkk(float3 v);

#endif

SDF.metal:

#include <metal_stdlib>

using namespace metal;
#include "SDF.h"

float kk(float2 v) {
return max(v.x, v.y);
}

float kkk(float3 v) {
return max(max(v.x, v.y), v.z);
}

Shaders.metal:

这里是你在包含SDF.h之后使用函数的地方。

// Shaders.metal

#include <metal_stdlib>

using namespace metal;
#include "SDF.h"

float fBoxCheap(float3 p, float3 b) { //cheap box
return kkk(abs(p) - b);
}

// ...

当然,清理后构建。祝你好运!

关于ios - Metal - `include` 或 `import` 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39283565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com