cl_mem clCreateBuffer
(
| cl_context context, |
| cl_mem_flags flags, | |
| size_t size, | |
| void *host_ptr, | |
cl_int *errcode_ret) |
context
A valid OpenCL context used to create the buffer object.
flags
A bit-field that is used to specify allocation and usage information such as the memory
arena that should be used to allocate the buffer object and how it will be used. The
following table describes the possible values for flags:
| cl_mem_flags | Description |
|---|---|
CL_MEM_READ_WRITE
|
This flag specifies that the memory object will be read and written by a kernel. This is the default. |
CL_MEM_WRITE_ONLY
|
This flags specifies that the memory object will be written but not read by a kernel. Reading from a buffer or image object created with
|
CL_MEM_READ_ONLY
|
This flag specifies that the memory object is a read-only memory object when used inside a kernel. Writing to a buffer or image object created with
|
CL_MEM_USE_HOST_PTR
|
This flag is valid only if OpenCL implementations are allowed to cache the buffer
contents pointed to by The result of OpenCL commands that operate on multiple
buffer objects created with the same |
CL_MEM_ALLOC_HOST_PTR
|
This flag specifies that the application wants the OpenCL implementation to allocate memory from host accessible memory.
|
CL_MEM_COPY_HOST_PTR
|
This flag is valid only if
|
size
The size in bytes of the buffer memory object to be allocated.
host_ptr
A pointer to the buffer data that may already be allocated by the application. The size
of the buffer that host_ptr points to must be greater than or equal to the size bytes.
errcode_ret
Returns an appropriate error code. If errcode_ret is NULL, no error code is returned.
Returns a valid non-zero buffer object and errcode_ret is set to CL_SUCCESS if
the buffer 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..
flags are not valid.
size is 0 or is greater than
CL_DEVICE_MAX_MEM_ALLOC_SIZE value specified in table of OpenCL Device Queries
for clGetDeviceInfo for all devices in context.
host_ptr is NULL and CL_MEM_USE_HOST_PTR or
CL_MEM_COPY_HOST_PTR are set in flags or if host_ptr is not NULL but
CL_MEM_COPY_HOST_PTR or CL_MEM_USE_HOST_PTR are not set in flags.
Copyright © 2007-2009 The Khronos Group Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and/or associated documentation files (the
"Materials"), to deal in the Materials without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Materials, and to
permit persons to whom the Materials are furnished to do so, subject to
the condition that this copyright notice and permission notice shall be included
in all copies or substantial portions of the Materials.