Jim Buck

3,874
Reputation
559 views

Registered User

Name Jim Buck
Member for 1 year
Seen 2 hours ago
Website
Location Ashland, MA, USA
Age 38
I'm a professional developer since 1993 and in the video game industry since 1996.
2d
awarded  Nice Answer
2d
answered A floating point array in C
Dec
3
comment Size of a structure in C
+1 or mentioning arrays since that's the biggest reason for certain platforms
Nov
30
awarded  Popular Question
Nov
30
awarded  Fanatic
Nov
28
answered #define f(g,g2) g##g2
Nov
27
comment C++: Iterating through a vector of vectors
I think you'll need to post exact code, and especially mark the line where you are hitting this run-time error.
Nov
26
comment Speeding up self-similarity in an image
What are some typical values for your for-loops? I would get rid of the dynamic memory allocation as a quickie first step.
Nov
25
comment Declaring a variable in an if-else block in C++
A reference must have an initial value.
Nov
25
comment Can I redefine a c++ macro for a few includes and then define it back?
Why are you defining T to T and then immediately undefining T (and vice-versa down below)?
Nov
24
answered Sharing methods between two implementations of a virtual base class in C++
Nov
20
comment C memcpy() a function
PlayStation 3 function pointer is a different size that a data pointer.
Nov
19
answered Why does this compile with the Dev-C++ compiler and not Visual Studio’s one ?
Nov
19
awarded  Notable Question
Nov
15
comment Why I can’t pass two chars as function arguments in C?
What does "stops executing" mean then? You will need to post the code for the function and describe what you expect to happen.
Nov
15
answered Why I can’t pass two chars as function arguments in C?
Nov
11
answered Variably modified array at file scope
Nov
8
answered How can I achieve inheritance in C?
Nov
7
comment how to build a vector of different objects after reading a file
It should be: obsdata[i]->writeMatlabDisplayCode(fs). Without knowing your file format, it's hard to address your second concern.
Nov
7
answered how to build a vector of different objects after reading a file
Nov
5
answered variables scoping when inheriting
Nov
2
comment How do I use a pointer as an offset?
Ahh, it's not crashing due to you setting up a GL_ELEMENT_ARRAY_BUFFER_ARB.
Nov
2
comment How do I use a pointer as an offset?
When I saw your original question, I thought the same thing I think now - how is glDrawElements not crashing when it tries to access the passed-in vertex array when your vertex array isn't a valid memory address (and just merely an offset)?
Nov
2
comment I have a floating-point overflow problem
Using floats/doubles for money is not a good idea, in particular if you plan to do math with it. You should use int-based datatypes, and then just format the string with a decimal place when you need to print it.
Oct
30
comment C++ function parameters: use a reference or a pointer (and then dereference)?
If you have a lot of pointer-based code, and you need to interface with a library that uses references, you have to use the dereference operator to call into that library. If your pointer-based code can have NULLs, then when you dereference, you will most certainly have a NULL reference. Sure, the result is undefined, but so is accessing NULL pointers in code that is only pointer-based.
Oct
30
answered C++ function parameters: use a reference or a pointer (and then dereference)?
Oct
30
comment C++ function parameters: use a reference or a pointer (and then dereference)?
Be careful with this, though, since references can actually be NULL. You shouldn't check for it, of course, but keep in mind that your code could still crash on a NULL reference (in case it matters for your application).
Oct
30
awarded  Enlightened
Oct
30
answered Why don’t STL containers have virtual destructors?
Oct
26
accepted OpenGL - Textures loading improperly
Oct
26
comment OpenGL - Textures loading improperly
Print out the TextureNum before you call bind to be sure you are, in fact, at least setting a different opengl texture. Also, try using GLintercept to see if you can spot anything using that. (I use this all the time to track down my opengl problems.)
Oct
26
comment OpenGL - Textures loading improperly
Yeah, definitely, since there is nothing obvious wrong in the loading code. (This assumes you are actually loading different textures, of course. :) )
Oct
26
answered OpenGL - Textures loading improperly
Oct
26
answered Cleaner pointer arithmetic syntax for manipulation with byte offsets
Oct
22
comment Generators in C++ — invalid use of nonstatic data member
Wow, I didn't know you could use a '$' in a #define like that.
Oct
13
comment Delete NULL but no compile error
It is legal in C++ to delete a NULL pointer, therefore the compiler is ok with it.
Oct
12
comment Is there a way to get the byte size of vectors through type alone?
What do you mean by predict the size? It looks pretty predictable in your example - 12 bytes. Keep in mind that that's implementation-dependent, though.
Oct
7
answered C file pointer read write issues
Oct
7
comment Using a variable to represent a function in C
If such a thing were possible, what are you gaining from it?
Oct
2
answered Is it possible to define a variable in expression in C++?
Sep
28
comment How can I check that all my init functions have been called?
.. and if you forget to put the macro in a particular init function? Then you're back to square one.
Sep
27
answered A diamond-inheritance problem
Sep
26
comment C++ reference type recommended usage
Do you mean as opposed to a pointer?
Sep
25
answered Organizing Images By Color
Sep
18
answered OpenGL game development - scenes that span far into view
Sep
18
comment Why is this code so slow?
Well, I actually think the big-win would be just optimizations. Noone mentioned that, but that has made a HUGE difference in my own code, and the side effect is that both size() and at() will probably be optimized out of the loop automatically anyway.
Sep
18
answered Why is this code so slow?
Sep
16
comment C++ syntax question: if var != type int
What is in the body of your if-statement? (In other words, what are you avoiding trying to do with an int?)
Sep
15
comment Any function to query the size of an allocated block?
(The above assumes a 4-byte sizeof(size_t), of course.)
Sep
15
comment Any function to query the size of an allocated block?
This breaks any alignment guarantees that malloc might otherwise give you on a particular platform. If, for example, you are on a platform that guarantees 8-byte alignment, this code example now turns it into 4-byte alignment.