Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Search:

Type: Posts; User: openglfirst

Search: Search took 0.01 seconds.

  1. How can i set color to a viewport area?

    #include <stdio.h>
    #include <stdlib.h>
    #include <GL/gl.h>
    #include <GL/glut.h>

    #define KEY_ESCAPE 27

    void display();
    void keyboard(unsigned char,int,int);
  2. If it's in Delphi, then how do you use that with...

    If it's in Delphi, then how do you use that with opengl-C/C++ ?
  3. Is the code you wrote available in internet? Did...

    Is the code you wrote available in internet? Did you write the nehe tutorial to load TGA/BMP? What's special about TGA or BMP? What's wrong with png,jpg?
  4. That code you wrote, is that available in...

    That code you wrote, is that available in internet?
  5. What is an art package? Why don't you want to...

    What is an art package? Why don't you want to rely upon someone elses work? What do you do then?
  6. How did you write your own loader? Is it...

    How did you write your own loader? Is it available on internet? How do you make .TGA files from png/jpg/bmp?
  7. Which do you use to load image? Which library do...

    Which do you use to load image? Which library do you use to load images?
  8. Can you post the complete example code?

    Can you post the complete example code?
  9. It's not loading that .png file, some say i need...

    It's not loading that .png file, some say i need libpng to make the png to raw file. I can't understand how to do it.
  10. Can't load .png image using opengl texture

    #include <stdio.h>
    #include <GL/gl.h>
    #include <GL/glut.h>

    #define KEY_ESCAPE 27

    void display();
    void keyboard(unsigned char,int,int);
    GLuint LoadTextureRAW(...
  11. How can i multiply these two matrices using...

    How can i multiply these two matrices using opengl and get the resulted matrix?
  12. Difference between glMatrixMode(GL_PROJECTION); and glMatrixMode(GL_MODELVIEW);

    What's the difference between glMatrixMode(GL_PROJECTION); and glMatrixMode(GL_MODELVIEW);



    #include <stdio.h>
    #include <GL/gl.h>
    #include <GL/glut.h>

    #define KEY_ESCAPE 27
  13. How can i load a 2D .jpeg/.jpg image and display it using glut of opengl?

    How can i load a 2D .jpeg/.jpg image and display it using glut of opengl?
    Can anyone post complete example code?
  14. How can i draw a star using glut and basic glVertex function?

    How can i draw a star using glut and basic glVertex function?
    Can anyone post example code for this and the complete command to compile this program?
  15. Replies
    0
    Views
    615

    How to read a bitmap file?

    I want to read a bitmap file using fread function.
    How to do that?
    Can anyone post complete code?
  16. Replies
    1
    Views
    1,246

    How to compile and run on fedora 12?

    g++ c.cpp -o c
    I got undefined reference to `glClear' etc .
  17. How to install opengl,glut on Fedora 12 ?

    How to install opengl,glut on Fedora 12 ?
  18. Replies
    11
    Views
    12,080

    Re: How to draw circle ?

    Is it possible to draw circle with "glVertex2i" function?
  19. Replies
    11
    Views
    12,080

    Re: How to draw circle ?

    How to do that in C/C++ ?
  20. Replies
    11
    Views
    12,080

    How to draw circle ?

    I want to draw a circle.
    How would i do this?
Results 1 to 20 of 20