
opengl
SUN_DRAGON
这个作者很懒,什么都没留下…
展开
-
pbo ,经典外文解说http://www.songho.ca/opengl/gl_pbo.html#overview
OpenGL Pixel Buffer Object (PBO)Related Topics: Vertex Buffer Object (VBO), Frame Buffer Object (FBO) Download: pboUnpack.zip, pboPack.zipOverview Creating PBO Mapping PBO Example: Str转载 2012-11-13 20:32:30 · 1422 阅读 · 0 评论 -
volume rendering 从opengl到cuda pbo实现 解析
1、申请pbo资源,由于是用于显示的,所以使用GL_PIXEL_UNPACK_BUFFER_ARB和GL_STREAM_DRAW_ARB,使用4个语句 glGenBuffersARB(1, &pbo); //使用GL_PIXEL_UNPACK_BUFFER_ARB因为是要用于显示的 glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB, pbo);原创 2012-11-14 09:22:53 · 2170 阅读 · 0 评论 -
vbo http://www.songho.ca/opengl/gl_vbo.html
OpenGL Vertex Buffer Object (VBO)Related Topics: Vertex Array, Display List,Pixel Buffer Object Download: vbo.zip,vboSimple.zip Creating VBO Drawing VBO Updating VBO Example GL_ARB_ver转载 2012-11-13 20:35:36 · 1125 阅读 · 0 评论