Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Results 1 to 6 of 6

Thread: How do I write something to the screen

  1. #1
    Junior Member Regular Contributor
    Join Date
    Feb 2000
    Location
    Sweden
    Posts
    102

    How do I write something to the screen

    How do I output something to the screen using GLUT???
    CyBBe

  2. #2
    Guest

    Re: How do I write something to the screen

    output what??

  3. #3
    Intern Contributor
    Join Date
    Feb 2000
    Location
    Italy
    Posts
    79

    Re: How do I write something to the screen

    Minimal steps:
    Create the display callback

    - glutInit
    - glutInitWindowSize
    - glutInitDisplayMode
    - glutCreateWindow
    - glutDisplayFunc to set the callback

    Now you have an active GL rendering context and can call any GL command.

    - glutMainLoop

    --
    Paolo
    --
    Paolo M.

  4. #4
    Junior Member Regular Contributor
    Join Date
    Feb 2000
    Location
    Sweden
    Posts
    102

    Re: How do I write something to the screen

    Sorry, I meant text, like a fps counter or a simple text...
    CyBBe

  5. #5

    Re: How do I write something to the screen


  6. #6
    Junior Member Regular Contributor
    Join Date
    Feb 2000
    Posts
    124

    Re: How do I write something to the screen

    Setup:
    - paint pictures with single letters or one large picture with all (or a subset of) ASCII-characters
    - load that picture(s)
    - make every single character a texture
    --------------
    - build a string you want to write (e.g. sprintf(...)
    - switch to orthogonal-projection
    - for each character in the string paint a square with the appropriate texture (perhaps translucent with glBlend...).
    - be happy

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •