Re: Window handle in JAWT

2000-11-17 Thread Juergen Kreileder
> "Adam" == aking <[EMAIL PROTECTED]> writes: Adam> I'm using the JAWT from 1.3 to do some native drawing. Adam> Under windows, getting the handle to the window is easy: Adam> dsi_win32 = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo; Adam> glHDC = dsi_win32->hdc;

Re: Window handle in JAWT

2000-11-17 Thread Nathan Meyers
On Fri, Nov 17, 2000 at 02:32:38PM -0500, [EMAIL PROTECTED] wrote: > I'm using the JAWT from 1.3 to do some native drawing. Under windows, > getting the handle to the window is easy: > > dsi_win32 = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo; > glHDC = dsi_win32->hdc; > glHWn

Window handle in JAWT

2000-11-17 Thread aking
I'm using the JAWT from 1.3 to do some native drawing. Under windows, getting the handle to the window is easy: dsi_win32 = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo; glHDC = dsi_win32->hdc; glHWnd = dsi_win32->hwnd; I'm also working on a Linux version, however, I need the