Tizen 2.1 base
[platform/upstream/libbullet.git] / Extras / RigidBodyGpuPipeline / opencl / opengl_interop / btOpenCLGLInteropBuffer.cpp
1 /*\r
2 Bullet Continuous Collision Detection and Physics Library\r
3 Copyright (c) 2011 Advanced Micro Devices, Inc.  http://bulletphysics.org\r
4 \r
5 This software is provided 'as-is', without any express or implied warranty.\r
6 In no event will the authors be held liable for any damages arising from the use of this software.\r
7 Permission is granted to anyone to use this software for any purpose, \r
8 including commercial applications, and to alter it and redistribute it freely, \r
9 subject to the following restrictions:\r
10 \r
11 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.\r
12 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\r
13 3. This notice may not be removed or altered from any source distribution.\r
14 */\r
15 \r
16 ///original author: Erwin Coumans\r
17 \r
18 #include "btOpenCLGLInteropBuffer.h"\r
19         \r
20 btOpenCLGLInteropBuffer::btOpenCLGLInteropBuffer(cl_context     clContext, cl_command_queue     commandQueue,GLuint openGLVBO)\r
21 :m_clContext(clContext),\r
22 m_commandQueue(commandQueue),\r
23 m_openGLVBO(openGLVBO)\r
24 {\r
25         cl_int ciErrNum = CL_SUCCESS;\r
26 //      m_buffer = clCreateFromGLBuffer(m_clContext, CL_MEM_WRITE_ONLY, m_openGLVBO, &ciErrNum);\r
27         m_buffer = clCreateFromGLBuffer(m_clContext, CL_MEM_READ_WRITE, m_openGLVBO, &ciErrNum);\r
28         oclCHECKERROR(ciErrNum, CL_SUCCESS);\r
29 \r
30 }\r
31 \r
32 btOpenCLGLInteropBuffer::~btOpenCLGLInteropBuffer()\r
33 {\r
34         cl_int ciErrNum = CL_SUCCESS;\r
35         clReleaseMemObject (m_buffer);\r
36         oclCHECKERROR(ciErrNum, CL_SUCCESS);\r
37 }\r
38 \r
39 void    btOpenCLGLInteropBuffer::copyCL2GL()\r
40 {\r
41         cl_int ciErrNum = CL_SUCCESS;\r
42         ciErrNum = clEnqueueAcquireGLObjects(m_commandQueue, 1, &m_buffer, 0, 0, NULL);\r
43         oclCHECKERROR(ciErrNum, CL_SUCCESS);\r
44 \r
45         //do some stuff\r
46 \r
47 \r
48 \r
49 \r
50         ciErrNum = clEnqueueReleaseGLObjects(m_commandQueue, 1, &m_buffer, 0, 0, 0);\r
51         oclCHECKERROR(ciErrNum, CL_SUCCESS);\r
52         //only wait if necessary\r
53 //      clFinish(m_commandQueue);\r
54 \r
55 }\r
56 \r
57 void    btOpenCLGLInteropBuffer::copyGL2CL()\r
58 {\r
59 }\r
60 \r