OpenGL实例

多重采样================

static int bgtoggle = 1;
static void init()
{
    GLint buf,sbuf;
    int i ,j;
    glClearColor(0.0,0.0,0.0,0.0);
    glGetIntegerv(GL_SAMPLE_BUFFERS,&buf);
    qDebug()<<"buf: "<<buf;
    glGetIntegerv(GL_SAMPLES,&sbuf);
    qDebug()<<"sbuf: "<<sbuf;


    glNewList(1,GL_COMPILE);
    for(i = 0; i < 19;i++)
    {
        glPushMatrix();
        glRotatef(360.0*(float)i/19.0,0.0,0.0,1.0);
        glColor3f(1.0,1.0,1.0);
        glLineWidth((i%3)+1.0);
        glBegin(GL_LINES);
            glVertex2f(0.25,0.25);
            glVertex2f(0.9,0.2);
        glEnd();


        glColor3f(0.0,1.0,1.0);
        glBegin(GL_TRIANGLES);
        glVertex2f(0.25,0.0);
        glVertex2f(0.9,1.0);
        glVertex2f(0.875,0.10);
        glEnd();
        glPopMatrix();
    }
    glEndList();


    glNewList(2,GL_COMPILE);
    glColor3f(1.0,0.5,0.0);
    glBegin(GL_QUADS);
    for(i = 0; i < 16; i++)
    {
        for(j = 0; j < 16;j++)
        {
            if(((i+j)%2) == 0)
            {
                glVertex2f(-2.0+(i*0.25),-2.0+(j*0.25));
                glVertex2f(-2.0+(i*0.25),-1.75+(j*0.25));
                glVertex2f(-1.75+(i*0.25),-1.75+(j*0.25));
                glVertex2f(-1.75+(i*0.25),-2.0+(j*0.25));
            }
        }
    }
    glEnd();
    glEndList();
}


static void display()
{
   glClear(GL_COLOR_BUFFER_BIT);
   if(bgtoggle)
       glCallList(2);


   glEnable(GL_MULTISAMPLE);
   glPushMatrix();
   glTranslatef(-1.0,0.0,0.0);
   glCallList(1);
   glPopMatrix();


   glDisable(GL_MULTISAMPLE);
   glPushMatrix();
   glTranslatef(1.0,0.0,0.0);
   glCallList(1);
   glPopMatrix();
   glutSwapBuffers();


}


static void reshape(int w, int h)
{
    glViewport(0, 0, w, h);
    GLfloat aspect = (GLfloat)w / (GLfloat)h;
    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    if (w <= h) {
        // width is smaller, go from -50 .. 50 in width
        glOrtho(-2.0, 2.0, -2.0/aspect, 2.0/aspect, -2.0, 2.0);
    } else {
        // height is smaller, go from -50 .. 50 in height
        glOrtho(-2.0*aspect, 2.0*aspect, -2.0, 2.0, -2.0, 2.0);
    }
}






static void keyboard(unsigned char key, int x, int y)
{
    switch (key) {
    case 'b':
    case 'B':
        bgtoggle = !bgtoggle;
        glutPostRedisplay();
        qDebug()<<"---------------------";
        break;
    case 27:  /*  Escape key  */
        exit(0);
        break;
    default:
        break;
    }
}




int main(int argc, char *argv[])
{
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);
    glutInitWindowPosition(80, 80);
    glutInitWindowSize(800, 500);
    glutCreateWindow("Spinning Square");
    init();
    glutReshapeFunc(reshape);
    glutDisplayFunc(display);
    glutKeyboardFunc(keyboard);
    glutMainLoop();
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值