/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test
tests_errors/soa-6.ispc
7 строк
203 B
Matt Pharr
Added tests and documentation for soa<> rate qualifier.
05 мар 2012, 21:58
05 мар 2012, 21:58
7adb250
Код
Авторство
О чём код?
// Can't convert between types "uniform struct Point" and "soa<4> struct Point" with different SOA widths struct Point { float a, b, c; }; void foo(soa<8> Point pts[]) { soa<4> Point x = pts[0]; }