clover: Add clUnloadPlatformCompiler.
authorEdB <edb+mesa@sigluy.net>
Sun, 27 Jul 2014 21:07:39 +0000 (23:07 +0200)
committerFrancisco Jerez <currojerez@riseup.net>
Mon, 28 Jul 2014 12:46:44 +0000 (14:46 +0200)
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
src/gallium/state_trackers/clover/api/dispatch.cpp
src/gallium/state_trackers/clover/api/program.cpp

index 43b5537..35d150d 100644 (file)
@@ -124,7 +124,7 @@ namespace clover {
       clCreateProgramWithBuiltInKernels,
       NULL, // clCompileProgram
       NULL, // clLinkProgram
-      NULL, // clUnloadPlatformCompiler
+      clUnloadPlatformCompiler,
       NULL, // clGetKernelArgInfo
       NULL, // clEnqueueFillBuffer
       NULL, // clEnqueueFillImage
index 293a61f..b81ce69 100644 (file)
@@ -180,6 +180,11 @@ clUnloadCompiler() {
 }
 
 CLOVER_API cl_int
+clUnloadPlatformCompiler(cl_platform_id d_platform) {
+   return CL_SUCCESS;
+}
+
+CLOVER_API cl_int
 clGetProgramInfo(cl_program d_prog, cl_program_info param,
                  size_t size, void *r_buf, size_t *r_size) try {
    property_buffer buf { r_buf, size, r_size };