\brief Wrapper for clGetGLObjectInfo().
| 4612 | |
| 4613 | //! \brief Wrapper for clGetGLObjectInfo(). |
| 4614 | cl_int getObjectInfo( |
| 4615 | cl_gl_object_type *type, |
| 4616 | cl_GLuint * gl_object_name) |
| 4617 | { |
| 4618 | return detail::errHandler( |
| 4619 | ::clGetGLObjectInfo(object_, type, gl_object_name), |
| 4620 | __GET_GL_OBJECT_INFO_ERR); |
| 4621 | } |
| 4622 | }; |
| 4623 | |
| 4624 | /*! \brief Class interface for cl_sampler. |
nothing calls this directly
no test coverage detected