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: dj_indo_420

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Re: Buffers (color, depth, accumilation, stencil)

    try finding an online version of the opengl super bible, it has a good explanation of the accum buffer, but it is advanced topic so you may have jump around on your reading to really understand it...
  2. Re: Displaying text that is uneffected by lights

    i think this might work
    glPushAttrib(GL_LIGHTING_BIT);
    glDisable(GL_LIGHTING);
    drawText();
    glPopAttrib();
  3. Replies
    3
    Views
    238

    Re: OpenGL SuperBible 1st edition

    I am reading the exact book, which I found online in pdf format. It is a great reference and has helped me understand many topics that are discussed here. The only thing I have found irrelevent so...
  4. Replies
    2
    Views
    165

    rgb bgr... does it matter

    what's the deal with different color descriptions in opengl, is there a big enough performace boost to change from one to the other, I am still new to opengl and was wondering if I should begin...
  5. Re: Problem in displaying 3d scene using the camera

    you should be setting your color in your myDisplay()
    glClearColor(1.0f,1.0f,1.0f,1.0f); // background is white
    glColor3f(0.0f,0.0f,0.0f); // set color of stuff unction

    it looks like you are...
  6. Replies
    1
    Views
    167

    Re: Multiple classes using opengl

    classes just help seperate objects and functions into wrappers, so they are easier to impliment, and you can track down bugs a lot easier. i have not used muiltiple inheritence much, so I can't...
  7. Replies
    1
    Views
    282

    Re: GetSystemMetrics equivalent in GLX

    try the linux opengl forum
  8. Replies
    5
    Views
    156

    Re: Suggest an online tutorial please

    www.gametutorials.net, they have a nice set of opengl tutorials, I'm not sure about the panel part though, I am having trouble finding good tutorials on 2D in opengl, I'm sure you could use several...
  9. Replies
    1
    Views
    124

    Re: Movement in 2D

    Basicly you should have a class for the bullet, a function that draws/fires the bullet, and a function that moves it. You should have a function that moves your ship. You should use the bullet class...
  10. Replies
    2
    Views
    193

    Re: Extension Q

    thanks!
  11. Re: Buffers (color, depth, accumilation, stencil)

    that's a perfect explanation for me, thanks for your time!
  12. Replies
    2
    Views
    193

    Extension Q

    hey everyone i'm sure you get this question a lot, but how can you take advantage of the extensions, I know some are vendor specific, like NVDIA and ATI, but when you download the drivers for your...
  13. Buffers (color, depth, accumilation, stencil)

    i was wondering if someone could explain a basic non technical explanation of these buffers, as layman as possible, i am reading through the red book and was introduced to these early in the book, i...
  14. Replies
    60
    Views
    94,364

    Re: Download OpenGL v1.2, 1.3 or 1.4

    lmfao
  15. Replies
    5
    Views
    379

    Re: Good Math Refreshers

    thanks for your suggestions everyone, i have found tons of useful information/explanations, hopefully i will have some harder questions for you in the near future ^_^
  16. Replies
    3
    Views
    157

    Re: Interested in Computer Programming

    it really depends on what kind of buisness you are planning on getting into, you can used opengl in many different applications for many different reasons, visual basic is easy to learn, but mostly...
  17. Replies
    12
    Views
    894

    Re: help ** glGetString returns NULL

    your opengl dlls are on your windows cd, if you have xp you can browse directly through the cab files, if you have 98/95 you could use the cabinet extractor to try to find them * just so you don't...
  18. Replies
    7
    Views
    224

    Re: problems with voodoo

    i had an old voodoo2 that had the same problem, mine used a version of glide for glquake i understand it was propierty, you may try to find a new driver for it that supports opengl, otherwise get a...
  19. Replies
    0
    Views
    354

    hollow sphere

    can you model a spere that has a defined thickness around the wireframe and keep the inside hollow, and is it possible to draw a texture to the inside of a sphere?
  20. Replies
    3
    Views
    267

    Re: .md2 model loading question

    thanks for all your useful info, I figured model loading could be associated to opengl as an advanced topic, i guess i was wrong. sorry to waste your precious time.
  21. Replies
    12
    Views
    894

    Re: help ** glGetString returns NULL

    the opengl drivers are usually included with your video card drivers, i know of a utility that automaticaly checks your drivers and updates them. I'm not sure of the name but I know someone else will...
  22. Re: Please Recommend a Graphics Card for an OpenGL developer (high end but not WHOA)

    i think you would get a better deal going with the radeon, they are really good cards, nvidia just manages to *usually come out with the latest support for directx and opengl, or they did in the past...
  23. Replies
    1
    Views
    854

    Opengl 1.4 Extensions

    How can i take advantage of 1.4 extensions in my code? Do I have to download a special library, or does it depend on the type of video card I have? Thanks for any info.
  24. Replies
    3
    Views
    267

    .md2 model loading question

    I have found several tutorials on loading md2 and md3 (quake II and 3 models). I am interested in model loading and animation in particular. A few questions if anyone can answer:
    1) Can quake models...
  25. Replies
    5
    Views
    174

    Re: How did you start to learn opengl ?

    try www.gametutorials.com they have excelent opengl tutorials from basics to advanced. like everyone else said i would have to go with the red book for the basics though. I have compiled all...
Results 1 to 25 of 29
Page 1 of 2 1 2