/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test
tests_errors/undef-struct-ptrmath-3.ispc
7 строк
135 B
Matt Pharr
Issue errors when doing illegal things with incomplete struct types.
18 апр 2012, 17:08
18 апр 2012, 17:08
55d5c07
Код
Авторство
О чём код?
// Illegal to perform pointer arithmetic on undefined struct type struct Foo; Foo * uniform bar(Foo * uniform f) { return f-1; }