Re: [PyOpenGL-Users] access violation when calling glGenFramebuffers
Brought to you by:
mcfletch
From: Chris B. - N. F. <chr...@no...> - 2013-04-05 15:59:39
|
On Fri, Apr 5, 2013 at 8:10 AM, Mike C. Fletcher <mcf...@vr...> wrote: > I just now realized "23" was just mis-typed 32 (duh!) I thought you were riffing on my typo.... > Test core did fail due to the use of a Python int for an IntConstant > where the value was 0xffffffff, (Python's int is apparently 32-bit on > 64-bit Python, sigh). With that fixed (in bzr head), running: weird, it's 64 bit on OS-X -- at least sys.maxint seems to think so. 32 bit python: >>> sys.maxint 2147483647 64 bit python: >>> sys.maxint 9223372036854775807 But maybe this is because Window's "long" is 32 bit on 64 bit Windows... But thinks for digging into all this -- I, for one am still doing 32 bit Pyton on Windows, but have an app I want to port to 64bit soon. -Chris -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chr...@no... |