1 // 2 // Copyright (c) 2017 The Khronos Group Inc. 3 // 4 // Licensed under the Apache License, Version 2.0 (the "License"); 5 // you may not use this file except in compliance with the License. 6 // You may obtain a copy of the License at 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 // 16 #ifndef _helpers_h 17 #define _helpers_h 18 19 #include <stdio.h> 20 #include <stdlib.h> 21 #include <math.h> 22 #include <string.h> 23 24 #if !defined(_WIN32) 25 #include <stdbool.h> 26 #endif 27 28 #include <sys/types.h> 29 #include <sys/stat.h> 30 31 #if !defined (__APPLE__) 32 #include <CL/cl.h> 33 #include "gl_headers.h" 34 #include <CL/cl_gl.h> 35 #else 36 #include "gl_headers.h" 37 #endif 38 39 #include "harness/errorHelpers.h" 40 #include "harness/kernelHelpers.h" 41 #include "harness/threadTesting.h" 42 #include "harness/typeWrappers.h" 43 #include "harness/conversions.h" 44 #include "harness/mt19937.h" 45 46 typedef cl_mem 47 (CL_API_CALL *clCreateFromGLBuffer_fn)(cl_context context, 48 cl_mem_flags flags, 49 GLuint bufobj, 50 int * errcode_ret); 51 52 typedef cl_mem 53 (CL_API_CALL *clCreateFromGLTexture_fn)(cl_context context , 54 cl_mem_flags flags , 55 GLenum target , 56 GLint miplevel , 57 GLuint texture , 58 cl_int * errcode_ret) ; 59 60 typedef cl_mem 61 (CL_API_CALL *clCreateFromGLRenderbuffer_fn)(cl_context context , 62 cl_mem_flags flags , 63 GLuint renderbuffer , 64 cl_int * errcode_ret) ; 65 66 typedef cl_int 67 (CL_API_CALL *clGetGLObjectInfo_fn)(cl_mem memobj , 68 cl_gl_object_type * gl_object_type , 69 GLuint * gl_object_name) ; 70 71 typedef cl_int 72 (CL_API_CALL *clGetGLTextureInfo_fn)(cl_mem memobj , 73 cl_gl_texture_info param_name , 74 size_t param_value_size , 75 void * param_value , 76 size_t * param_value_size_ret) ; 77 78 typedef cl_int 79 (CL_API_CALL *clEnqueueAcquireGLObjects_fn)(cl_command_queue command_queue , 80 cl_uint num_objects , 81 const cl_mem * mem_objects , 82 cl_uint num_events_in_wait_list , 83 const cl_event * event_wait_list , 84 cl_event * event) ; 85 86 typedef cl_int 87 (CL_API_CALL *clEnqueueReleaseGLObjects_fn)(cl_command_queue command_queue , 88 cl_uint num_objects , 89 const cl_mem * mem_objects , 90 cl_uint num_events_in_wait_list , 91 const cl_event * event_wait_list , 92 cl_event * event) ; 93 94 95 extern clCreateFromGLBuffer_fn clCreateFromGLBuffer_ptr; 96 extern clCreateFromGLTexture_fn clCreateFromGLTexture_ptr; 97 extern clCreateFromGLRenderbuffer_fn clCreateFromGLRenderbuffer_ptr; 98 extern clGetGLObjectInfo_fn clGetGLObjectInfo_ptr; 99 extern clGetGLTextureInfo_fn clGetGLTextureInfo_ptr; 100 extern clEnqueueAcquireGLObjects_fn clEnqueueAcquireGLObjects_ptr; 101 extern clEnqueueReleaseGLObjects_fn clEnqueueReleaseGLObjects_ptr; 102 103 104 class glBufferWrapper 105 { 106 public: glBufferWrapper()107 glBufferWrapper() { mBuffer = 0; } glBufferWrapper(GLuint b)108 glBufferWrapper( GLuint b ) { mBuffer = b; } ~glBufferWrapper()109 ~glBufferWrapper() { if( mBuffer != 0 ) glDeleteBuffers( 1, &mBuffer ); } 110 111 glBufferWrapper & operator=( const GLuint &rhs ) { mBuffer = rhs; return *this; } GLuint()112 operator GLuint() { return mBuffer; } 113 operator GLuint *() { return &mBuffer; } 114 115 GLuint * operator&() { return &mBuffer; } 116 117 bool operator==( GLuint rhs ) { return mBuffer == rhs; } 118 119 protected: 120 121 GLuint mBuffer; 122 }; 123 124 class glTextureWrapper 125 { 126 public: glTextureWrapper()127 glTextureWrapper() { mBuffer = 0; } glTextureWrapper(GLuint b)128 glTextureWrapper( GLuint b ) { mBuffer = b; } ~glTextureWrapper()129 ~glTextureWrapper() { if( mBuffer != 0 ) glDeleteTextures( 1, &mBuffer ); } 130 131 glTextureWrapper & operator=( const GLuint &rhs ) { mBuffer = rhs; return *this; } GLuint()132 operator GLuint() { return mBuffer; } 133 operator GLuint *() { return &mBuffer; } 134 135 GLuint * operator&() { return &mBuffer; } 136 137 bool operator==( GLuint rhs ) { return mBuffer == rhs; } 138 139 protected: 140 141 GLuint mBuffer; 142 }; 143 144 class glRenderbufferWrapper 145 { 146 public: glRenderbufferWrapper()147 glRenderbufferWrapper() { mBuffer = 0; } glRenderbufferWrapper(GLuint b)148 glRenderbufferWrapper( GLuint b ) { mBuffer = b; } ~glRenderbufferWrapper()149 ~glRenderbufferWrapper() { if( mBuffer != 0 ) glDeleteRenderbuffersEXT( 1, &mBuffer ); } 150 151 glRenderbufferWrapper & operator=( const GLuint &rhs ) { mBuffer = rhs; return *this; } GLuint()152 operator GLuint() { return mBuffer; } 153 operator GLuint *() { return &mBuffer; } 154 155 GLuint * operator&() { return &mBuffer; } 156 157 bool operator==( GLuint rhs ) { return mBuffer == rhs; } 158 159 protected: 160 161 GLuint mBuffer; 162 }; 163 164 class glFramebufferWrapper 165 { 166 public: glFramebufferWrapper()167 glFramebufferWrapper() { mBuffer = 0; } glFramebufferWrapper(GLuint b)168 glFramebufferWrapper( GLuint b ) { mBuffer = b; } ~glFramebufferWrapper()169 ~glFramebufferWrapper() { if( mBuffer != 0 ) glDeleteFramebuffersEXT( 1, &mBuffer ); } 170 171 glFramebufferWrapper & operator=( const GLuint &rhs ) { mBuffer = rhs; return *this; } GLuint()172 operator GLuint() { return mBuffer; } 173 operator GLuint *() { return &mBuffer; } 174 175 GLuint * operator&() { return &mBuffer; } 176 177 bool operator==( GLuint rhs ) { return mBuffer == rhs; } 178 179 protected: 180 181 GLuint mBuffer; 182 }; 183 184 185 // Helper functions (defined in helpers.cpp) 186 extern void * CreateGLTexture2D( size_t width, size_t height, 187 GLenum target, GLenum glFormat, 188 GLenum internalFormat, GLenum glType, 189 ExplicitType type, GLuint *outTextureID, 190 int *outError, bool allocateMem, MTdata d ); 191 192 193 extern void * CreateGLTexture3D( size_t width, size_t height, size_t depth, 194 GLenum target, GLenum glFormat, 195 GLenum internalFormat, GLenum glType, 196 ExplicitType type, GLuint *outTextureID, 197 int *outError, MTdata d, bool allocateMem = true ); 198 199 extern void * ReadGLTexture( GLenum glTarget, GLuint glTexture, 200 GLenum glFormat, GLenum glInternalFormat, 201 GLenum glType, ExplicitType typeToReadAs, 202 size_t outWidth, size_t outHeight ); 203 204 void * CreateGLRenderbuffer( GLsizei width, GLsizei height, 205 GLenum attachment, 206 GLenum rbFormat, GLenum rbType, 207 GLenum texFormat, GLenum texType, 208 ExplicitType type, 209 GLuint *outFramebuffer, 210 GLuint *outRenderbuffer, 211 int *outError, MTdata d, bool allocateMem ); 212 213 int CreateGLRenderbufferRaw( GLsizei width, GLsizei height, 214 GLenum attachment, 215 GLenum rbFormat, GLenum rbType, 216 GLuint *outFramebuffer, 217 GLuint *outRenderbuffer ); 218 219 void * ReadGLRenderbuffer( GLuint glFramebuffer, GLuint glRenderbuffer, 220 GLenum attachment, 221 GLenum rbFormat, GLenum rbType, 222 GLenum texFormat, GLenum texType, 223 ExplicitType typeToReadAs, 224 size_t outWidth, size_t outHeight ); 225 226 extern void DumpGLBuffer(GLenum type, size_t width, size_t height, void* buffer); 227 extern const char *GetGLTypeName( GLenum type ); 228 extern const char *GetGLAttachmentName( GLenum att ); 229 extern const char *GetGLTargetName( GLenum tgt ); 230 extern const char *GetGLBaseFormatName( GLenum baseformat ); 231 extern const char *GetGLFormatName( GLenum format ); 232 233 extern void* CreateRandomData( ExplicitType type, size_t count, MTdata d ); 234 235 extern GLenum GetGLFormat(GLenum internalFormat); 236 extern GLenum GetGLTypeForExplicitType(ExplicitType type); 237 extern size_t GetGLTypeSize(GLenum type); 238 extern ExplicitType GetExplicitTypeForGLType(GLenum type); 239 240 extern GLenum get_base_gl_target( GLenum target ); 241 242 extern int init_clgl_ext( cl_platform_id platform_id ); 243 244 #endif // _helpers_h 245 246 247 248