Advertisement

hwcExecuteStatusWinFiFo>Invalid fifotyped error

Started by June 11, 2002 10:24 AM
1 comment, last by ormiau 22 years, 8 months ago
How do I solve this problem? What is the cause? O'''' Neil de Lim
O'' Neil de Lim
Which programming language? Which platform?

When does the error occur? How can we reproduce the error ourselves? Do you have a code listing to show where you think the error is occurring?

Personally I''ve never heard of your problem before.

Details, details......



-------- E y e .Scream Software --------
----------------------------------------
                                  /-\
    http://www.eyescream.cjb.net | * |
                                  \-/
----------------------------------------
Advertisement
Platform: Win98
Software: Visual C++ 6
Output:
(hwcExecuteStatusWinFifo): Invalid fifoTypegd error (hwcExecuteStatusWinFifo): Invalid fifoTypegd error

It filled up my screen with these words.

Code:
/*simple.c*/
#include <gl/glut.h>

void display()

{

glClear(GL_COLOR_BUFFER_BIT);

glBegin(GL_POLYGON);
glVertex2f(-0.5, -0.5);
glVertex2f(-0.5, 0.5);
glVertex2f(0.5, 0.5);
glVertex2f(0.5, -0.5);
glEnd();

glFlush();

}

void main(int argc, char** argv)
{
glutInit(&argc,argv);
glutCreateWindow("simple");
glutDisplayFunc(display);
glutMainLoop();

}


O'''' Neil de Lim
O'' Neil de Lim

This topic is closed to new replies.

Advertisement