Search:

Type: Posts; User: Thunderco

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    26,695

    They have tutorials that use the stencil buffer,...

    They have tutorials that use the stencil buffer, but require that you already know how to use it to understand it (which I dont :/)
  2. Replies
    8
    Views
    26,695

    OpenGL, sry bout that.

    OpenGL, sry bout that.
  3. Replies
    8
    Views
    26,695

    Stencil Buffer Tutorial

    I haven't been able to locate any stencil buffer tutorials that actually explain how to use it and what they are doing, just a bunch of tutorials that use it to achieve some effect or another, and...
  4. Replies
    6
    Views
    1,734

    Thats what I did to get my code in the first...

    Thats what I did to get my code in the first place. Turns out I was rendering all the verticies from the array, I kinda assumed that you could render the verticies in order, but you need to use hte...
  5. Replies
    6
    Views
    1,734

    YOu should knwo that the Frame index was changed...

    YOu should knwo that the Frame index was changed because I was messing around with it, that doesn't make the difference, I just realized I posted it like that, sorry!
  6. Replies
    6
    Views
    1,734

    struct md2Header { int magic; int...

    struct md2Header {
    int magic;
    int version;
    int skinWidth;
    int skinHeight;
    int frameSize;
    int numSkins;
    int numVertices;
    int...
  7. Replies
    6
    Views
    1,734

    MD2 Model Format Issues

    Basically I'm loading the first frames verticies to start out with (Gotta start somewhere), then scale and translate them, swap Y-Z values, all that stuff. Now when I render it, I get this:
    Image:...
  8. Replies
    66
    Views
    6,869

    I've used .NET and a few others (c#, asp.net,...

    I've used .NET and a few others (c#, asp.net, bunches of others), its not really any better, for the most part is worse. True there are some problems in C++, but I've never had any problem creting a...
  9. Replies
    2
    Views
    2,352

    If you look at the pictures, you see how they...

    If you look at the pictures, you see how they blend into different colors depending on the background, yes this is normal, but not the desired result. I only want the particles to blend...
  10. Replies
    66
    Views
    6,869

    I'm fully aware my code would not actually work...

    I'm fully aware my code would not actually work that way, I do know the constructors are private(I think I said it in my previous post as well), I was just being lazy :D. I was also just trying to be...
  11. Replies
    66
    Views
    6,869

    The point of a singleton is that, whenever you...

    The point of a singleton is that, whenever you make you try to make a new instance of it, you get the first created instance(unless no previous one has been created). SO if you're singleton has say...
  12. Replies
    66
    Views
    6,869

    Just to lend my 2 cents, I have no real idea...

    Just to lend my 2 cents, I have no real idea about what you are talking about yet (although I'm learning, its time consuming), but for the complicated object systems, an excellent idea is to use a...
  13. Replies
    2
    Views
    2,352

    Blending and Depth Testing

    Alright, I've started my own particle engine, and it's been doing great, but the trick is, it looks nice when you blend just the particles, and the particles only. The trick is you would have to draw...
Results 1 to 13 of 13