| bio | website | dolda2000.com/~fredrik |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 10 months |
| seen | 2 days ago | |
| stats | profile views | 80 |
|
Apr 20 |
comment |
Drawing a bunch of FBO seems slow If each of those FBO textures cover the entire screen, it seems reasonable that it's slow, since you're processing every single pixel of the entire screen for an object that perhaps only covers a few pixels, 2000 times over. You're probably bottlenecked at the ROPs. |
|
Apr 9 |
comment |
System.out.err & System.out interleaving in Java But that's just absurd, since you wouldn't be getting a line ending. Then at least use System.err.print(i + "\n");. |
|
Apr 9 |
answered | System.out.err & System.out interleaving in Java |
|
Apr 9 |
answered | Unable to process this regular expression |
|
Mar 27 |
comment |
Rendering tile-based 3D terrain It should also be said that offsetting half a texel also does not work when a mipmap is being used, since that helf a texel is then a larger texel. |
|
Mar 27 |
comment |
Rendering tile-based 3D terrain I have, but that doesn't help when doing MSAA, since the texture coordinate of "half-visible" fragments can be extrapolated almost arbitrarily far from the specified values, depending on how far I zoom out. |
|
Mar 27 |
asked | Rendering tile-based 3D terrain |
|
Mar 21 |
answered | Optimal Buffer size |
|
Mar 21 |
revised |
Is there a good way to add a Document Listener to a Dynamically created JTextField edited tags |
|
Mar 21 |
answered | How to share object tree with process fork? |
|
Mar 20 |
comment |
Execute ssh command inside a script @chepner: You should offer that as an answer. It is most likely the case. |
|
Mar 20 |
comment |
How to close server socket? There's nothing clearly wrong with what you're doing. What IOException are you seeing (what is its message?), and on which line does it occur? |
|
Mar 19 |
comment |
Java Memory Model Well, naturally, a memory model has always existed, but up until Java 1.5 it was thought to suck, so the introduction of the new memory model was a rather Big Thing. Since "Java Memory Model" is the canonical term for this, I would think that if he was not looking for the heap/GC model, he ought to have been referring to this. You say that "We all know how concurrency stuff works", but I don't think the barrier model and partial ordering of memory operations is all that common knowledge. |
|
Mar 19 |
comment |
Java Memory Model "But"? I don't see what contradiction you are trying to point out. :) |
|
Mar 19 |
answered | Java Memory Model |
|
Mar 19 |
comment |
How do I rename a Java .class file? Well, that's probably an exaggeration, but I'd like to make the point that it wouldn't be as simple as simply changing the name in the class file; you'd also have to change all references to it in the constant pool, for instance, and I don't know the rest of the class format well enough off hand to say if there are any other symbolic references that would need to be updated. |
|
Mar 19 |
comment |
How do I rename a Java .class file? Certainly, but I get the feeling it's probably easier and less complex to use JPDA or something to instrument the function in the live VM instead. :) |
|
Mar 19 |
comment |
Is System.nanoTime() guaranteed to return unique values? You don't need to give a unique string to createTempFile; it's supposed to create that for you. You can simply use File.createTempFile("temp", null); |
|
Mar 19 |
reviewed | Reject suggested edit on Is System.nanoTime() guaranteed to return unique values? |
|
Mar 19 |
answered | How can I find which physical device /dev/console connects to? |