Я пытаюсь провести глубинное тестирование на шаге постобработки демонстрации AR SceneKit.Для этого мне понадобится карта глубины рендера ARSCNView.Кажется невозможным получить его с помощью SCNTechnique.
Я получаю пустые (полные 1,0 с) буферы глубины, когда пытаюсь использовать глубину из прохода DRAW_SCENE в качестве входных данных в проходе DRAW_QUAD в SCNTechnique.Я следовал инструкциям на SCNTechnique и назвал цель глубины.Это ошибка в реализации SCNTechnique, или я что-то упустил в конфигурации?
Цветовой буфер правильно соединен в цепочку, и пример из https://github.com/lachlanhurst/SCNTechniqueTest/tree/pixelate работает.
Вот отладочный вид металлической техники, как вы можете видеть, буфер глубины полностью белый.
Вот список технических приемов:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>passes</key>
<dict>
<key>pixelate_scene</key>
<dict>
<key>draw</key>
<string>DRAW_SCENE</string>
<key>inputs</key>
<dict/>
<key>outputs</key>
<dict>
<key>color</key>
<string>color_scene</string>
<key>depth</key>
<string>depth_scene</string>
</dict>
<key>colorStates</key>
<dict>
<key>clear</key>
<true/>
<key>clearColor</key>
<string>sceneBackground</string>
</dict>
</dict>
<key>resample_pixelation</key>
<dict>
<key>draw</key>
<string>DRAW_QUAD</string>
<key>program</key>
<string>doesntexist</string>
<key>metalVertexShader</key>
<string>pixelate_pass_through_vertex</string>
<key>metalFragmentShader</key>
<string>pixelate_pass_through_fragment</string>
<key>inputs</key>
<dict>
<key>colorSampler</key>
<string>color_scene</string>
<key>depthSampler</key>
<string>depth_scene</string>
</dict>
<key>outputs</key>
<dict>
<key>color</key>
<string>COLOR</string>
</dict>
</dict>
</dict>
<key>sequence</key>
<array>
<string>pixelate_scene</string>
<string>resample_pixelation</string>
</array>
<key>targets</key>
<dict>
<key>color_scene</key>
<dict>
<key>type</key>
<string>color</string>
</dict>
<key>depth_scene</key>
<dict>
<key>type</key>
<string>depth</string>
</dict>
</dict>
<key>symbols</key>
<dict/>
</dict>
</plist>
Шейдеры выглядят так:
#include <metal_stdlib>
#include <metal_geometric>
using namespace metal;
#include <SceneKit/scn_metal>
struct custom_vertex_t
{
float4 position [[attribute(SCNVertexSemanticPosition)]];
};
constexpr sampler s = sampler(coord::normalized,
address::repeat,
filter::nearest);
struct out_vertex_t
{
float4 position [[position]];
float2 uv;
};
vertex out_vertex_t pixelate_pass_through_vertex(custom_vertex_t in [[stage_in]], constant SCNSceneBuffer& scn_frame [[buffer(0)]])
{
out_vertex_t out;
out.position = in.position;
out.uv = float2((in.position.x + 1.0) * 0.5 , (in.position.y + 1.0) * -0.5);
return out;
};
fragment half4 pixelate_pass_through_fragment(out_vertex_t vert [[stage_in]], texture2d<float, access::sample> colorSampler [[texture(0)]], texture2d<float, access::sample> depthSampler [[texture(1)]])
{
float4 fragment_color = colorSampler.sample( s, vert.uv);
float ar_depth = depthSampler.sample(s, vert.uv).r;
return half4(fragment_color * 0.5 + float4(ar_depth) * 0.5);
};