\brief Wrapper for clGetGLObjectInfo().
| 3536 | |
| 3537 | //! \brief Wrapper for clGetGLObjectInfo(). |
| 3538 | cl_int getObjectInfo( |
| 3539 | cl_gl_object_type *type, |
| 3540 | cl_GLuint * gl_object_name) |
| 3541 | { |
| 3542 | return detail::errHandler( |
| 3543 | ::clGetGLObjectInfo(object_,type,gl_object_name), |
| 3544 | __GET_GL_OBJECT_INFO_ERR); |
| 3545 | } |
| 3546 | }; |
| 3547 | |
| 3548 | /*! \brief C++ base class for Image Memory objects. |
nothing calls this directly
no test coverage detected