Creates an OpenCL 2D image object from an OpenGL 2D texture object, or a single face of an OpenGL cubemap texture object.
cl_mem
clCreateFromGLTexture2D
(
| cl_context context, |
cl_mem_flags flags, | |
GLenum texture_target, | |
GLint miplevel, | |
GLuint texture, | |
cl_int *errcode_ret) |
context
A valid OpenCL context created from an OpenGL context.
flags
A bit-field that is used to specify usage information. Refer to
the table for
clCreateBuffer
for a description of flags
. Only CL_MEM_READ_ONLY, CL_MEM_WRITE_ONLY and CL_MEM_READ_WRITE
values specified in the table for clCreateBuffer
may be used.
texture_target
Must be one of GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X,
GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_RECTANGLE. texture_target
is
used only to define the image type of texture
. No reference to a bound GL
texture object is made or implied by this parameter.
Using GL_TEXTURE_RECTANGLE for texture_target requires OpenGL 3.1. Alternatively, GL_TEXTURE_RECTANGLE_ARB may be specified if the OpenGL extension GL_ARB_texture_rectangle is supported.
miplevel
The mipmap level to be used. Implementations may return CL_INVALID_OPERATION for miplevel values greater than 0.
texture
The name of a GL 2D, cubemap or rectangle texture object. The
texture object must be a complete texture as per OpenGL rules on
texture completeness. The texture
format and
dimensions defined by OpenGL for the specified miplevel
of the texture will be used to create the 2D image object. Only GL texture
objects with an internal format that maps to appropriate image channel order
and data type specified in the table of supported Image Channel Order
Values and the table of supported Image Channel Data Types for
cl_image_format
may be used to create a 2D image object.
errcode_ret
Returns an appropriate error code as described below.
If errcode_ret
is NULL, no error code is returned.
Returns a valid non-zero OpenCL image object and errcode_ret
is
set to CL_SUCCESS if the image object is
created successfully. Otherwise, it returns a NULL
value with one of the following error values returned in errcode_ret
:
context
is not a valid context or was not created from a GL context.
flags
are not valid or if value specified in
texture_target
is not one of the values specified
in the description of texture_target
.
miplevel
is less
than the value of levelbase
(for OpenGL
implementations) or zero (for OpenGL ES implementations); or greater than the value of
q
(for both OpenGL and OpenGL ES).
levelbase
and q
are defined for the texture in section 3.8.10 (Texture Completeness) of the OpenGL 2.1 specification and section 3.7.10 of the OpenGL ES 2.0 specification.
miplevel
is greater than zero and the OpenGL implementation does not support creating from non-zero mipmap levels.
texture
is not a GL texture object whose type matches
texture_target
, if the specified miplevel
of
texture
is not defined,
or if the width or height
of the specified miplevel
is zero.
texture
is a GL texture object created with a border width value greater than zero.