Int32Pointer attribList = NativeBridge.getInstance().createInt32Pointer(1, true);
attribList.set(0,0);
long id = wgl.wglCreatePbufferARB(hdc, pixelFormat, w, h, attribList.lock());
attribList.unlock();
attribList.free();
long buffHdc = wgl.wglGetPbufferDCARB(id);
w32.ReleaseDC(hwnd, hdc);
w32.DestroyWindow(hwnd);