Lots of work done moving the various raycasting implementations over to a

consolidated RayCaster class.
This commit is contained in:
MitchellHansen
2016-11-02 00:09:32 -07:00
parent 45627e6a85
commit 518cc757a3
9 changed files with 874 additions and 23 deletions

View File

@@ -22,11 +22,11 @@
#endif
struct device {
cl_device_id id;
cl_device_type type;
cl_uint clock_frequency;
char version[128];
cl_platform_id platform;
cl_device_id id;
cl_device_type type;
cl_uint clock_frequency;
char version[128];
cl_platform_id platform;
cl_uint comp_units;
};