/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test
tests_errors/array-pointer-assign.ispc
6 строк
122 B
Matt Pharr
Choose type for integer literals to match the target mask size (if possible).
24 июл 2013, 04:24
24 июл 2013, 04:24
f7f281a
Код
Авторство
О чём код?
// Illegal to assign to array type "varying float\[5\]" void foo(float *x) { float a[5] = { 1,2,3,4,5}; a = x; }