博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OpenGL: 模板缓冲区
阅读量:6544 次
发布时间:2019-06-24

本文共 3689 字,大约阅读时间需要 12 分钟。

hot3.png

        相信大家有些人对OpenGL的模板缓冲区不是很理解,包括我最开始也是,OpenGL的模板缓冲区其实就是采用过滤的技术来控制那些颜色可以绘制,那些不能进行绘制。这里的过滤技术也就是我们的一个控制方法,主要体现在如下两个函数glStencilFunc(GLenum func,GLint ref,GLuint mask)和glStencilOp(GLenum fail,GLenum zfail, GLenum zpass),其中

1.glStencilFunc中的第一个参数指的是过滤函数,(如何来进行过滤),过滤函数有如下几种类型

   GL_NEVER 从来不能通过

   GL_ALWAYS 永远可以通过(默认值)

   GL_LESS 小于参考值可以通过

   GL_LEQUAL 小于或者等于可以通过

   GL_EQUAL 等于通过

   GL_GEQUAL 大于等于通过

   GL_GREATER 大于通过

   GL_NOTEQUAL 不等于通过

        在这里“通过”的意思指的是,我们在将图元绘制到帧缓冲区的时候在片段进行测试的时候是可以完全透过去的,否则的话这个片段就无法绘制到对应的颜色帧缓冲区,那么我们所绘制的内容也就显示不出来。通过这种控制方法来控制显示,其实这种操作在我们实际的生活中也是很常见的,例如给汽车喷漆,盖章(只会显示刻了的内容)。

2.通过模板操作glStencil()来控制模板结果值的操作,例如,如果失败了对模板值进行加1,减1等处理。等待下一次片段处理的时候再进行新的比较,对值的过滤做新的控制。

3.在这里我想通过这样一个例子来说明一下:

[cpp] 
  1. #include <math.h>  
  2. #include <iostream>  
  3. #include <assert.h>  
  4.   
  5. #include <GL/glut.h>  
  6. #pragma comment(lib, "glut32.lib")  
  7. // #include <GL/glew.h>  
  8. // #pragma comment(lib, "glew32.lib")  
  9.   
  10. void init()  
  11. {  
  12.     glClearColor(0.0, 0.0, 1.0, 0.0);  
  13.     glClearStencil(0);  
  14.     glEnable(GL_STENCIL_TEST);  
  15. }  
  16.   
  17. void display()  
  18. {  
  19.     glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);  
  20.   
  21.     glLoadIdentity();  
  22.     glTranslatef(0.0, 0.0, -20.0);  
  23.   
  24.     glStencilFunc(GL_ALWAYS, 0, 0x00);  
  25.     //glStencilFunc(GL_NEVER, 0x0, 0x0);  
  26.     //glStencilOp(GL_INCR, GL_INCR, GL_INCR);//  
  27.   
  28.     glColor3f(1.0f, 1.0f, 1.0f);  
  29.   
  30.     float dRadius = 5.0 * (sqrt(2.0) / 2.0);  
  31.     glBegin(GL_LINE_STRIP);  
  32.     for (float dAngel = 0; dAngel < 380.0; dAngel += 0.1)  
  33.     {  
  34.         glVertex2d(dRadius * cos(dAngel), dRadius * sin(dAngel));  
  35.         dRadius *= 1.003;  
  36.     }  
  37.     glEnd();  
  38.   
  39.     //glStencilFunc(GL_NOTEQUAL,0x1,0x1);  
  40.     //glStencilOp(GL_INCR,GL_INCR,GL_INCR);//  
  41.   
  42.     glColor3f(1.0f, 0.0f, 0.0f);  
  43.     glRectf(-5, -5, 5, 5);  
  44.   
  45.     glutSwapBuffers();  
  46. }  
  47.   
  48. void reshape(int w, int h)  
  49. {  
  50.     glViewport(0, 0, w, h);  
  51.     float aspect = (w * 1.0) / h;  
  52.   
  53.     glMatrixMode(GL_PROJECTION);  
  54.     glLoadIdentity();  
  55.     gluPerspective(60, aspect, 1, 100);  
  56.   
  57.     glMatrixMode(GL_MODELVIEW);  
  58.     glLoadIdentity();  
  59. }  
  60.   
  61. int main(int argc, char* argv[])  
  62. {  
  63.     glutInit(&argc, argv);  
  64.     glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGBA|GLUT_STENCIL);  
  65.     glutInitWindowPosition(200,200);  
  66.     glutInitWindowSize(600,600);  
  67.     glutCreateWindow(argv[0]);  
  68.   
  69. //  assert(GLEW_NO_ERROR == glewInit());  
  70.   
  71.     init();  
  72.     glutReshapeFunc(reshape);  
  73.     glutDisplayFunc(display);  
  74.     glutMainLoop();  
  75.   
  76.     return 0;  
  77. }  

加入模板控制之后的结果:

[cpp] 
  1. #include <math.h>  
  2. #include <iostream>  
  3. #include <assert.h>  
  4.   
  5. #include <GL/glut.h>  
  6. #pragma comment(lib, "glut32.lib")  
  7. // #include <GL/glew.h>  
  8. // #pragma comment(lib, "glew32.lib")  
  9.   
  10. void init()  
  11. {  
  12.     glClearColor(0.0, 0.0, 1.0, 0.0);  
  13.     glClearStencil(0);  
  14.     glEnable(GL_STENCIL_TEST);  
  15. }  
  16.   
  17. void display()  
  18. {  
  19.     glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);  
  20.   
  21.     glLoadIdentity();  
  22.     glTranslatef(0.0, 0.0, -20.0);  
  23.   
  24.     //glStencilFunc(GL_ALWAYS, 0, 0x00);  
  25.     glStencilFunc(GL_NEVER, 0x0, 0x0);  
  26.     glStencilOp(GL_INCR, GL_INCR,GL_INCR);//  
  27.   
  28.     glColor3f(1.0f, 1.0f, 1.0f);  
  29.   
  30.     float dRadius = 5.0 * (sqrt(2.0) / 2.0);  
  31.     glBegin(GL_LINE_STRIP);  
  32.     for (float dAngel = 0; dAngel < 380.0; dAngel += 0.1)  
  33.     {  
  34.         glVertex2d(dRadius * cos(dAngel), dRadius * sin(dAngel));  
  35.         dRadius *= 1.003;  
  36.     }  
  37.     glEnd();  
  38.   
  39.     glStencilFunc(GL_NOTEQUAL, 0x1, 0x1);  
  40.     glStencilOp(GL_INCR, GL_INCR, GL_INCR);//  
  41.   
  42.     glColor3f(1.0f, 0.0f, 0.0f);  
  43.     glRectf(-5.0, -5.0, 5.0, 5.0);  
  44.   
  45.     glutSwapBuffers();  
  46. }  
  47.   
  48. void reshape(int w, int h)  
  49. {  
  50.     glViewport(0, 0, w, h);  
  51.     float aspect = (w * 1.0) / h;  
  52.   
  53.     glMatrixMode(GL_PROJECTION);  
  54.     glLoadIdentity();  
  55.     gluPerspective(60.0, aspect, 1.0, 100.0);  
  56.   
  57.     glMatrixMode(GL_MODELVIEW);  
  58.     glLoadIdentity();  
  59. }  
  60.   
  61. int main(int argc, char* argv[])  
  62. {  
  63.     glutInit(&argc, argv);  
  64.     glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_STENCIL);  
  65.     glutInitWindowPosition(200, 200);  
  66.     glutInitWindowSize(600, 600);  
  67.     glutCreateWindow(argv[0]);  
  68.   
  69. //  assert(GLEW_NO_ERROR == glewInit());  
  70.   
  71.     init();  
  72.     glutReshapeFunc(reshape);  
  73.     glutDisplayFunc(display);  
  74.     glutMainLoop();  
  75.   
  76.     return 0;  
  77. }  

转载于:https://my.oschina.net/u/2334725/blog/596373

你可能感兴趣的文章
Risc-V指令集
查看>>
Python进阶04 函数的参数对应
查看>>
C语言结构体的“继承”
查看>>
c++ const修饰符 总结
查看>>
配置Tomcat的JVM的大小解决Tomcat内存溢出的问题
查看>>
WebView之禁止调用第三方浏览器
查看>>
POJ 3468 A Simple Problem with Integers(线段树 区间更新)
查看>>
华为MSTP负载均衡配置示例
查看>>
HTML5开源RPG游戏引擎lufylegendRPG 1.0.0发布
查看>>
安装apr-1.6.3报错[cannot remove `libtoolT’: No such file or directory]解决方法
查看>>
C# 操作Excel,控制格式[转]
查看>>
iOS开发中一些常用的属性
查看>>
Git 使用教程
查看>>
spring--基于ioc的配置文件方式
查看>>
“小 U”- UI自动化测试平台 [自动化测试平台开发实战 - 基于 Spring Boot + Kotlin]...
查看>>
easyui的一些使用方法
查看>>
Vue使用过程中的可能会遇到的几个问题
查看>>
TIMO 后台管理系统 v2.0.1 发布,加入 jwt 身份验证组件,基于 Spring Boot
查看>>
Java 11 将至,不妨了解一下 Oracle JDK 之外的版本
查看>>
Log4j_学习_03_自己动手封装log工具
查看>>