1

我正在阅读使用 Metal 启动并运行,第 2 部分,尝试学习使用可用的最佳语言功能重写所有代码。其中一个特性是 C++ 构造函数,我很高兴能够在我的着色器中使用它,它来自 Cg 和 GLSL,它们缺少这个。

此代码在设备上运行良好,但我收到警告:

'vertex_main' 指定了 C 链接,但返回与 C 不兼容的用户定义类型 'ColoredVertex'

这有关系吗?我不知道为什么要指定 C-linkage。我也不知道如何禁用警告,这是我想做的,以及报告错误,如果没关系的话。

using namespace metal;

struct ColoredVertex {
    const float4 position [[position]];
    const half4 color;

    ColoredVertex(const float4 position, const half4 color)
    : position(position), color(color) {}
};

vertex ColoredVertex vertex_main(
    constant float4 *position [[buffer(0)]],
    constant float4 *color [[buffer(1)]],
    uint vid [[vertex_id]]
) {return ColoredVertex(position[vid], half4(color[vid]));}

fragment half4 fragment_main(ColoredVertex vert [[stage_in]]) {
    return vert.color;
}
4

1 回答 1

1

让我们在您的 Metal 源代码中再添加一个函数:

int myFunction(int x) { return x / 2; }

然后让我们手动运行编译器并要求它发出人类可读的格式:

xcrun -sdk iphoneos metal MyLibrary.metal -S -emit-llvm

输出在MyLibrary.ll. 这是vertex_main输出中的定义:

define %struct.ColoredVertex.packed @vertex_main(<4 x float> addrspace(2)* nocapture readonly, <4 x float> addrspace(2)* nocapture readonly, i32) local_unnamed_addr #1 {
  %4 = zext i32 %2 to i64
  %5 = getelementptr inbounds <4 x float>, <4 x float> addrspace(2)* %0, i64 %4
  %6 = load <4 x float>, <4 x float> addrspace(2)* %5, align 16, !tbaa !22
  %7 = getelementptr inbounds <4 x float>, <4 x float> addrspace(2)* %1, i64 %4
  %8 = load <4 x float>, <4 x float> addrspace(2)* %7, align 16, !tbaa !22
  %9 = tail call fast <4 x half> @air.convert.f.v4f16.f.v4f32(<4 x float> %8)
  %10 = insertvalue %struct.ColoredVertex.packed undef, <4 x float> %6, 0
  %11 = insertvalue %struct.ColoredVertex.packed %10, <4 x half> %9, 1
  ret %struct.ColoredVertex.packed %11
}

这是 的定义myFunction

define i32 @_Z10myFunctioni(i32) local_unnamed_addr #0 {
  %2 = sdiv i32 %0, 2
  ret i32 %2
}

这里要注意的重要一点是名称myFunction被损坏了,这意味着它具有 C++ 链接,而名称vertex_main没有被损坏,这意味着它具有 C 链接。因此我们可以推断,将函数声明为vertex自动赋予它 C 链接。(fragment_main也未损坏。)

它可能具有 C 链接,因为未损坏的名称在运行时更容易查找。(回想一下,我们在运行时使用 . 按名称查找着色器函数-[MTLLibrary newFunctionWithName:]。)

我猜“与 C 不兼容”警告在您的情况下并不重要。我认为ColoredVertex它“与 C 不兼容”,因为它有一个重要的构造函数,但除此之外,它还是一个与 C 兼容的 POD(普通旧数据类型)。

于 2018-02-21T21:45:25.253 回答