由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - OpenGL能否方便实现自定义图形的移动,擦除和分层显示?
相关主题
Python里边file writer的问题关于C C++ 和java的文件读写问题
does the system guarantee this? (转载)A question related to pipe
multi-thread 一问,请问如何恢复正常的IO?
新人5个包子请教问题,redhat读写文件的内存问题 (转载)emacs里面有没有快捷建能交换2个窗口的内容? (转载)
问一个vim的问题ask a simple question about int pointer.
为什么redbox比netflix好用的多?如何动态分配内存来存储输入的不定长的字符串,char not string类型的
URL questions如何循环播放一个mp3文件中的某一段?
【贴图】这个人的Emacs + GDB 是怎么做出来的? (转载)奇怪的问题:关于一个简单的malloc()小程序 (转载)
相关话题的讨论汇总
话题: buffer话题: 擦除话题: 分层话题: buffers话题: use
进入Programming版参与讨论
1 (共1页)
d******i
发帖数: 7160
1
刚入门,勿拍砖.
谢谢!
d******i
发帖数: 7160
2
自顶!
O*******d
发帖数: 20343
3
Yes, very easy to 移动 分层显示. no partial 擦除. You have to clear the
frame buffer and redraw if you want to partial 擦除. Use translation matrix
or viewport to 移动. Use depth buffer to 分层显示.
O*******d
发帖数: 20343
4
OpenGL applications usually use two or three frame buffers. One of them is
the front buffer, the content of which is displayed on the screen. Other
buffers are back buffers for drawing. You draw your graph in back buffer
and switch the buffer to the front when you are done for flicker free
display.
d******i
发帖数: 7160
5
能给个例子如何做到“Use depth buffer to 分层显示”吗?
谢谢!

matrix

【在 O*******d 的大作中提到】
: Yes, very easy to 移动 分层显示. no partial 擦除. You have to clear the
: frame buffer and redraw if you want to partial 擦除. Use translation matrix
: or viewport to 移动. Use depth buffer to 分层显示.

d******i
发帖数: 7160
6
zi ding.
O*******d
发帖数: 20343
7
You can set up a very shallow display volume. Objects can only be displayed
if they are falling into that volume.

【在 d******i 的大作中提到】
: 能给个例子如何做到“Use depth buffer to 分层显示”吗?
: 谢谢!
:
: matrix

1 (共1页)
进入Programming版参与讨论
相关主题
奇怪的问题:关于一个简单的malloc()小程序 (转载)问一个vim的问题
菜鸟问题:关于写DataBase的问题 —— CDaoDatabase为什么redbox比netflix好用的多?
Dynamic buffer management questionURL questions
菜鸟请教C问题【贴图】这个人的Emacs + GDB 是怎么做出来的? (转载)
Python里边file writer的问题关于C C++ 和java的文件读写问题
does the system guarantee this? (转载)A question related to pipe
multi-thread 一问,请问如何恢复正常的IO?
新人5个包子请教问题,redhat读写文件的内存问题 (转载)emacs里面有没有快捷建能交换2个窗口的内容? (转载)
相关话题的讨论汇总
话题: buffer话题: 擦除话题: 分层话题: buffers话题: use