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

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    414

    Re: A Problem with glBindTexture

    Make sure you register a valid texture identification integer(the reference) by calling glGenTextures and make sure that the generated ID is different than 0. Here is a sample code:

    GLuint myID;
    ...
  2. Replies
    4
    Views
    82

    Register combiners O_o?

    Can somebody please explain me(in english) what are the register combiners?I understand the shaders/vertex programs but not the combiners and i have some feeling that they are the key to the advanced...
  3. Replies
    15
    Views
    1,972

    Re: Win32 ChangeDisplaySettings question

    So guys you wanna tell me that you are gonna change resolutions,switch to fullscreen mode and vise/versa without re-initializing system?!No that it's not very safe....it's ULTRA unsafe...
  4. Replies
    22
    Views
    1,401

    Re: "Salvation" - Visual OpenGL design

    Well damn the man said it took years,the screenshots look cool(amazing is more right),he gives reasonable arguments and we behave like a bunch of loosers.It's very good looking pal and i think in...
  5. Replies
    15
    Views
    1,972

    Re: Win32 ChangeDisplaySettings question

    Dunno what that has in common with advanced OpenGL but yes it is safe(the only way even http://www.opengl.org/discussion_boards/ubb/wink.gif) and yes it will require that you reinitialize your...
  6. Replies
    10
    Views
    1,189

    Re: Rendering Lightmaps

    it seems to me you aren't parsing any shaders.don't forget that the whole Q3 engine is built on them.
  7. Replies
    4
    Views
    398

    Re: Congrats for the MX users

    They are modified GF2 right but the most of the copabilities are presented.Don't know what's wrong with the implementation of fragment shaders.Also the 3D textures are missing which is also not very...
  8. Replies
    4
    Views
    398

    Congrats for the MX users

    Hi guys and congratiolations about the new NV drivers.Good to know that the VBO bug has been finaly fixed on the MX cards.Last night i tried rendering the Tom's demo for VBO and i was glad to see...
  9. Thread: Ray casting

    by Mihail121
    Replies
    4
    Views
    298

    Re: Ray casting

    Ray-casting with OpenGL,are u nuts?!
  10. Re: Turning on texture alpha crashes my program...

    Window$ BMPz???!!!!?!

    Christ........
  11. Thread: DirectX 9

    by Mihail121
    Replies
    3
    Views
    141

    Re: DirectX 9

    DirectX?!!!!!!!!!!!!!?Better?!!!!!!!!!!!!!!
    ...
    ...
    ...
    i don't so.....
  12. Replies
    7
    Views
    506

    Re: ARBvbo && NV && linux ... once again

    Hi!I also have a GeForce4 MX and the VBO bugs are simply killing me.If i'm not wrong there is something wrong also with the NV extension but if they are gonna be soon fixed who cares :d.
  13. Replies
    6
    Views
    226

    Re: GL extensions and nVidia

    it's kinda tells what extensions are available with your implementation but offen misses occurr like this one.Everything is documented thought so not to worry!
  14. Re: On compressed textures again. s3tc3 [vs] s3tc5

    Yeah 10x,i didn't knew the difference either.
  15. Replies
    3
    Views
    195

    Re: Getting screen resolutions

    DEVMODE screen_settings;
    int i = 0;

    while(EnumScreenSettings(NULL,i,&screen_settings) != FALSE)
    {
    printf("%d: %dx%d %d bpp",i,screen_settings.dmPelsWidth,
    screen_settings.dmPelsHeight,...
  16. Replies
    14
    Views
    937

    Re: AGP texture transfer time

    You answered yourself!The reason why it takes that long is cause the API enters a enourmous loop to convert the data from grayscaled to RGBA!!!Note it will be EXTREMELY more safer and faster if you...
  17. Replies
    2
    Views
    191

    Re: Difficult conversions!

    What's the hard about to convert an image into other format?
  18. Re: glRenderMode(GL_SELECT) ... glEnable(GL_GO_FAST_PLEASE) ...

    It's not my job to tell you this but usually if you avoid all of the OpenGL pipleline specific optimizations and operations the software rasterization will be A LOT faster.So if you write a quick...
  19. Re: What better(faster):gluLookat or glTranslate/Rotate?

    Yeah i want to say sorry.I'm now respected and will go tell all gamedev companies to stop using own ma3x ops and start using glTranslate/glRotate etc.It's just a bit intresting how they haven't...
  20. Replies
    1
    Views
    211

    Re: Can't update Dx9

    It seems to me that your dsound is kinda crapy or your performing an illegal or not very right operation somewhere in the code.Mind if we see some source?

    P.S.
    I bet you've noticed this is a site...
  21. Re: What better(faster):gluLookat or glTranslate/Rotate?

    As long as u guys use the GLU junk functions or use stuff like glTranslate/Rotate etc instead of own ma3x ops you will probably stay in the beginners forum
  22. Replies
    13
    Views
    637

    Re: Quake III BSP Files

    U don't get the idea.The shader files fill the render state manager of Quake III.They only save a billion of state switches.U can go without them too.After all each engine is uniqe.
  23. Replies
    18
    Views
    2,427

    Re: Keeping track of camera position

    you guys are gonna kill me!here is what you do to get the cameras position(NOTE:POSITION NOT DIRECTION!!!!!!!):

    double m[16];

    glGetDoublev(GL_MODELVIEW_MATRIX,m);

    the camera position is...
  24. Replies
    5
    Views
    650

    Re: Very strange bug with wglGetProcAddress

    Don't know what might be happening.Maybe your calling it while no context is current.
  25. Replies
    13
    Views
    637

    Re: Quake III BSP Files

    Look nukem it's actually (HELL NOT THAT)easy.

    The ASS files contain a series of waypoints and flags for the bots.You can completely ignore them.The thing you need to know is that each BSP file...
Results 1 to 25 of 107
Page 1 of 5 1 2 3 4