Andrei Krotkov

957
reputation
199 views

Registered User

name Andrei Krotkov
member for 11 months
seen 4 hours ago
website
location College Park, MD
age 21
I'm a full-time student at the University of Maryland: College Park, studying Computer Science and Mathematics. I also have a part time job at a research lab near campus working on traffic data visualization.
Dec
16
comment OpenGL texture loading issue
I wasn't aware there was any delay on glTexImage2D - it seems like a blocking function in all of its' behaviors.
Dec
16
revised OpenGL texture loading issue
deleted 165 characters in body
Dec
16
comment OpenGL texture loading issue
I have no idea why adding glFlush worked, but it did, so you get the accepted! I would love to know why, though. It also sped up the program like fivefold.
Dec
16
revised OpenGL texture loading issue
added 307 characters in body
Dec
16
comment OpenGL texture loading issue
I got the glIntercept output from the program - there's a few interesting jumps, but which ones are harmful, and which ones are harmless? Is loading textures inside display lists frowned upon? Inside quads? Between glGetString calls?
Dec
16
revised OpenGL texture loading issue
added 215 characters in body
Dec
16
comment OpenGL texture loading issue
The first part is definitely not the problem, as the texture coordinates are never actually changed between them working and not. Are there any side effects to calling glFlush in the middle of a render loop?
Dec
16
comment OpenGL texture loading issue
Well stated - the direction I'm taking to try to resolve it is to get it working with GLTrace, to see if it would give more information. Which state variables would affect when a texture would be available?
Dec
16
comment OpenGL texture loading issue
I believe the error it gave before crashing was that functions were being called out of context - unfortunately that's very old code that I wasn't on the project for, so I have no idea why it doesn't explode on the normal OpenGL dlls.
Dec
16
comment OpenGL texture loading issue
glIntercept causes our program to crash without ever displaying a single thing...
Dec
16
revised OpenGL texture loading issue
added 239 characters in body
Dec
16
comment OpenGL texture loading issue
They don't have to be, that's a suggestion for most older video cards. That said, in my case it's a timing issue, as the textures do eventually load properly.
Dec
16
comment OpenGL texture loading issue
The pixels are being loaded, but not being updated into OpenGL until multiple draws requesting that picture exist. The reason I know this is that the pink/white textures are replaced by the actual texture requested, but only after more textures are loaded. The reason I know it's not the loading is because the same pink/white texture is consistent - it shows up the same way in ALL textures that didn't load properly, for whatever reason.
Dec
16
asked OpenGL texture loading issue
Nov
4
awarded  Necromancer
Aug
31
accepted How do I save/export an OpenGL surface into Quicktime in Cocoa/Objective C?
Jul
27
comment Opengl Selection with Alpha Test
How does this help? I don't want to figure out what's in the buffer, I just want the picking code to not return anything if it's a blank area that's under the mouse.
Jul
27
asked Opengl Selection with Alpha Test
Jul
25
comment Signed Angle in 3D Vectors
(The up-vector is arbitrary as well)
Jul
25
comment Signed Angle in 3D Vectors
I wish it were that simple. It's an arbitrary coordinate system for a reason. The camera is oriented on a giant sphere, and all I can assume is that the both the direction and the north vector are unit vectors.
Jul
25
asked Signed Angle in 3D Vectors
Jul
6
comment C++ STL Range Container
Very elegant answer!
Jul
6
comment C++ STL Range Container
Thanks, dribeas. Comparing as references is a good point. Floating points are loaded from a file in this case, and are never explicitly calculated, so == should be fine. I personally prefer assignments over initialization lists, and debugging is taken care of by the IDE.
Jul
6
comment C++ STL Range Container
I believe my code works correctly now - can anyone verify?
Jul
6
revised C++ STL Range Container
Added my working code.
Jul
6
comment C++ STL Range Container
I have two sets, but rather than duplicate code here, I chose one of them.
Jul
6
comment C++ STL Range Container
I considered this approach, but I'd like to make a much more intuitive approach, as seen by my driving code. If I can get that to work correctly, I'd prefer it.
Jul
6
comment C++ STL Range Container
I've posted the code as an edit instead of an answer.
Jul
6
revised C++ STL Range Container
added 2663 characters in body
Jul
6
comment C++ STL Range Container
Very good point. Is there a way to force the program to use the comparison against double instead of having a special case of min==max?
Jul
6
comment C++ STL Range Container
That's clever. I was trying to compare against a double, but it didn't seem to want to work.
Jul
6
comment C++ STL Range Container
How would you access the map based on a single double then?
Jul
6
comment C++ STL Range Container
So, more specifically, what would each comparison mean? Would operator== with a single double check whether the double is in the range?
Jul
6
asked C++ STL Range Container