/
redgpu
/
raygpu
Обзор
Документация
Войти
/
redgpu
/
raygpu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
amalgamation/glslang/Test/spv.multiStructFuncall.frag
21 строка
347 B
manuel
Bump glslang to 16.0.0
31 окт 2025, 02:24
31 окт 2025, 02:24
2d4c73f
Код
Авторство
О чём код?
#version 450 struct S { mat4 m; }; buffer blockName { S s1; }; // need an S with decoration S s2; // no decorations on S void fooConst(const in S s) { } void foo(in S s) { } void fooOut(inout S s) { } void main() { fooConst(s1); fooConst(s2); foo(s1); foo(s2); fooOut(s1); fooOut(s2); }