Search found 387 matches

by qpHalcy0n
Mon Oct 25, 2010 9:58 am
Forum: Game Development
Topic: OpenGL Help
Replies: 18
Views: 2667

Re: OpenGL Help

It doesnt appear that you're actually binding the texture before you're submitting draw calls. It also does not appear that you've enabled blending. If in fact the image has a good alphamap in it then enabling blending and setting a good blend mode should work for ya.
by qpHalcy0n
Sun Oct 24, 2010 11:13 am
Forum: Game Development
Topic: OpenGL Help
Replies: 18
Views: 2667

Re: OpenGL Help

Well then you need to post what you've got so far. Doing image preprocessing yourself isn't so easy if it's your first stab at it. There may be an issue with your loader, you may be passing mismatched pixel formats, you may have the blend mode set incorrectly for what you want to do...who knows. Nee...
by qpHalcy0n
Fri Oct 22, 2010 9:11 am
Forum: Programming Discussion
Topic: what is svn?
Replies: 15
Views: 1830

Re: what is svn?

Image
by qpHalcy0n
Thu Oct 21, 2010 10:17 pm
Forum: Programming Discussion
Topic: getting texture information from openGL
Replies: 9
Views: 887

Re: getting texture information from openGL

You can indeed query the texture's dimensions straight from OpenGL. Bind the texture. Call glGetTexLevelParameteriv(target, level, paramName, data); Where target is likely to be GL_TEXTURE_2D, unless it's a cubemap, 3D texture, or 1D texture. where level is an integer for the texture level you wish ...
by qpHalcy0n
Wed Oct 20, 2010 10:20 pm
Forum: Game Development
Topic: OpenGL Help
Replies: 18
Views: 2667

Re: OpenGL Help

OpenGL has no color keying. You can either grab the image from the GL after it has been loaded. Or you can do it as a preprocessing step. Either way, if you're not using SDL or SFML or something like that, there is no "function" that does this for you. You have to write it yourself. glGetT...
by qpHalcy0n
Tue Oct 19, 2010 9:36 am
Forum: Programming Discussion
Topic: Moving resources from human viewable to binary?
Replies: 19
Views: 2263

Re: Moving resources from human viewable to binary?

Realtime data encoding and virtualization is among the fastest growing subfields of computer graphics. In many cases it saves both, there are multiple formats for both geometric and image data that do not need to be decompressed to be sampled. There are also multiple image formats that are compressi...
by qpHalcy0n
Fri Oct 15, 2010 9:33 pm
Forum: Programming Discussion
Topic: How do you keep interest?
Replies: 14
Views: 1124

Re: How do you keep interest?

Well, there's no reason that you can't just hop right into whatever it is that you want to do. Game programming is fairly abstract and if you can conceive of it, you can do it. If this is your first experience with a high level language then you can learn alot in the process. I wouldn't think entire...
by qpHalcy0n
Fri Oct 15, 2010 2:16 pm
Forum: Programming Discussion
Topic: OpenGL and Vsync
Replies: 31
Views: 3422

Re: OpenGL and Vsync

My suggestion has always been to communicate with the OS directly. Definitely go searching, there may or may not be a way around this. I can't be sure. There does not exist any limitation within the OpenGL driver or within windows that would NOT allow this to happen, so it looks like yet another sho...
by qpHalcy0n
Fri Oct 15, 2010 9:50 am
Forum: Programming Discussion
Topic: OpenGL and Vsync
Replies: 31
Views: 3422

Re: OpenGL and Vsync

It's not just you ;)

My advice is, and alway has been, just steer a mile clear of SDL and SFML.
by qpHalcy0n
Fri Oct 15, 2010 8:56 am
Forum: Programming Discussion
Topic: OpenGL and Vsync
Replies: 31
Views: 3422

Re: OpenGL and Vsync

Well, unfortunately as I've outlined in the thread below yours which was also suffering SDL problems, when dealing with SDL and OpenGL concurrently all bets are off. It's simply too difficult to tell what in the hell this API is really doing. A short search and a bit of past experience has revealed ...
by qpHalcy0n
Thu Oct 14, 2010 4:32 pm
Forum: Programming Discussion
Topic: OpenGL Textures Disappear
Replies: 17
Views: 1734

Re: OpenGL Textures Disappear

I'm not sure I see what you're trying to do or why it should be so unnecessarily complicated.

When the mode switch happens, any pointers to assets you have (had) will be gone and dead. Whatever method you used in your initialization step to add textures to the SDL simply needs to be called again.
by qpHalcy0n
Thu Oct 14, 2010 3:53 pm
Forum: Programming Discussion
Topic: My first practice video
Replies: 4
Views: 677

Re: My first practice video

In my sig, silly.
by qpHalcy0n
Thu Oct 14, 2010 3:38 pm
Forum: Programming Discussion
Topic: OpenGL Textures Disappear
Replies: 17
Views: 1734

Re: OpenGL Textures Disappear

@RandomDever ah...yep, that'd be why then. SDL does NOT deal with video mode switches effectively or appropriately in any way shape or form whatsoever. It's extremely wonky. @RandomDever I'm not saying that, necessarily. I am saying that you'll have to employ a cheap workaround for this to not happe...
by qpHalcy0n
Thu Oct 14, 2010 3:10 pm
Forum: Programming Discussion
Topic: My first practice video
Replies: 4
Views: 677

Re: My first practice video

I'm sorry, we don't do light criticism here ;)

Looks good. Fine work :] May the learning continue.
by qpHalcy0n
Thu Oct 14, 2010 10:52 am
Forum: Programming Discussion
Topic: OpenGL Textures Disappear
Replies: 17
Views: 1734

Re: OpenGL Textures Disappear

Surely. If SDL or SFML either implement canvases or render surfaces as pbuffers (which may or may not be the case), pbuffers will get lost on resize or minimize events. This is a terrible implementation if this is the case as pbuffers suffer a myriad of latency issues. I do know that SDL is exceptio...