/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/OpenCL/KernelLaunch/premake4.lua
34 строки
687 B
erwincoumans
fix shadowmap crash on some Intel GPUs, see https://github.com/bulletphysics/bullet3/issues/4
11 июл 2015, 08:20
11 июл 2015, 08:20
6c9ce34
Код
Авторство
О чём код?
function createProject(vendor) hasCL = findOpenCL(vendor) if (hasCL) then project ("Test_OpenCL_kernel_launch_" .. vendor) initOpenCL(vendor) language "C++" kind "ConsoleApp" includedirs {"../../../src"} files { "main.cpp", "../../../src/Bullet3OpenCL/Initialize/b3OpenCLUtils.cpp", "../../../src/Bullet3Common/b3AlignedAllocator.cpp", "../../../src/Bullet3OpenCL/Initialize/b3OpenCLUtils.h", "../../../src/Bullet3Common/b3Logging.cpp", "../../../src/Bullet3OpenCL/ParallelPrimitives/b3LauncherCL.cpp" } end end createProject("clew") createProject("Apple") createProject("AMD") createProject("Intel") createProject("NVIDIA")