OSDN Git Service

clover: Import OpenCL state tracker.
authorFrancisco Jerez <currojerez@riseup.net>
Fri, 20 Apr 2012 14:56:19 +0000 (16:56 +0200)
committerFrancisco Jerez <currojerez@riseup.net>
Fri, 11 May 2012 10:39:44 +0000 (12:39 +0200)
commitc6db1b3396384186aab5b685fe1fd540e17b3a62
treeb0766dc3d485336df8e1a7946206ca0afbbdebda
parent309a186987cea7f62dfd41fef66fac6d79fca96c
clover: Import OpenCL state tracker.
51 files changed:
configure.ac
include/CL/cl.h [new file with mode: 0644]
include/CL/cl.hpp [new file with mode: 0644]
include/CL/cl_ext.h [new file with mode: 0644]
include/CL/cl_gl.h [new file with mode: 0644]
include/CL/cl_gl_ext.h [new file with mode: 0644]
include/CL/cl_platform.h [new file with mode: 0644]
include/CL/opencl.h [new file with mode: 0644]
src/gallium/state_trackers/Makefile
src/gallium/state_trackers/clover/Doxyfile [new file with mode: 0644]
src/gallium/state_trackers/clover/Makefile.am [new file with mode: 0644]
src/gallium/state_trackers/clover/api/context.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/device.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/event.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/kernel.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/memory.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/platform.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/program.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/queue.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/sampler.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/transfer.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/api/util.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/base.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/compat.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/compiler.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/context.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/context.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/device.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/device.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/event.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/event.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/format.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/format.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/geometry.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/kernel.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/kernel.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/memory.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/memory.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/module.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/module.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/program.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/program.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/queue.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/queue.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/resource.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/resource.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/sampler.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/core/sampler.hpp [new file with mode: 0644]
src/gallium/state_trackers/clover/llvm/invocation.cpp [new file with mode: 0644]
src/gallium/state_trackers/clover/tgsi/compiler.cpp [new file with mode: 0644]
src/gallium/targets/opencl/Makefile.am [new file with mode: 0644]