Ben Campbell

Results 44 comments of Ben Campbell

I finally got around to trying it all out in visual studio, and got it compiling just fine for both 32bit and 64bit varieties (ie generators "Visual Studio 14 2015"...

I think this crash is because you're calling ui calls from another go routine. Look up `QueueMain()` for a way to do it.

How about something like: ``` button.OnClicked(func(*ui.Button) { go func() { for i := 0; i

Just dumping some thoughts here - not sure if they're any use: 1) Probably don't want to be using SJLJ (setjmp/longjmp) exceptions ever. They've been obsolete since GCC 3.x. Can...

Fair enough - I figured it was a long shot :-) Is the compiler patch kept in sync? The patch references gcc-12, but I thought the current target is gcc...

I'm using it directly from the extension right now, but there's something rather satisfying about seeing gcc bootstrap itself, so I'll probably build it myself some time, and maybe even...

I've cherry-picked this change into my [cmake_cleanup](https://github.com/bcampbell/DevIL/tree/cmake_cleanup) branch. It fixed up compiling with EXR on my machine (linux).

See also #34. The current implementation of IL_NUM_IMAGES returns the number of images _after_ the currently-bound image. So the result returned depends upon which frame you're currently on (eg if...

While on the subject of multiple frames, it looks to me like the `AnimList` & `AnimSize` members in `ILimage` are unused. It looks to me like they are superseded by...

It's definitely in scope, but probably not something I'm looking at doing myself any time soon. But I'm happy to take patches ;- ) I know there are definitely some...