使用Metal API与Imageblocks模板“隐式实例化”错误

问题描述 投票:-1回答:2

在以下金属性能着色器代码中:

#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;

struct MeshVertex
{
    half3 worldPosition3d;
    half2 cameraPosition2d;
};

kernel void MeshImageblockShader_kernelFunction(
                 imageblock<MeshVertex>                 meshVertex_imageblock,
                 texture2d<float, access::read_write>   trueDepthTexture       [[ texture(0) ]],
        constant float3x3&                              positionInThreadgroup  [[ thread_position_in_threadgroup ]],
                 ushort2                                positionInGrid         [[ threadgroup_position_in_grid ]])
{

    threadgroup_imageblock MeshVertex* meshVertex_threadgroupImageblock = meshVertex_imageblock.data(positionInThreadgroup);
    imageblock_slice<half3> worldPosition3d_slice = meshVertex_imageblock.slice(meshVertex_threadgroupImageblock->worldPosition3d);    
}

我在最后一个代码行上遇到两个错误:

(!) implicit instantiation of undefined template 'metal::imageblock_slice<half __attribute__((ext_vector_type(3))), metal::imageblock_layout_explicit, void>'
(!) too few template arguments for class template 'imageblock_slice'

我正在尝试在https://developer.apple.com/videos/play/tech-talks/603/上关注“Metal 2 on a !! - Imageblocks”的技术谈话示例(代码示例在3:25发给视频。)

我无法使用图像块在互联网上找到任何代码示例。

任何人都可以建议一些示例代码,或告诉我为什么这不编译?

c++ templates metal metal-performance-shaders imageblocks
2个回答
0
投票

imageblock_slice<T>模板与half3不兼容。

改为imageblock_slice<half4>解决了这个问题。


0
投票

你错过了顶部的#include <metal_imageblocks>

© www.soinside.com 2019 - 2024. All rights reserved.