-
Where can I get the pointer to the pixel data for OpenGL? I need it for the last parameter in void glDrawPixels( GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
const GLvoid *pixels )
Thanks.
2009-07-12 00:15:07 UTC by nobody
-
Fixed in EasyBMP 1.07, due in a couple of weeks. (Yes, I'm finally
resuming development!!! :-) Thanks! -- Paul.
2008-04-27 04:32:48 UTC by macklin01
-
Fixed in EasyBMP 1.07, due in a couple of weeks. (Yes, I'm finally resuming development!!! :-) Thanks! -- Paul.
2008-04-27 04:31:24 UTC by nobody
-
I have no idea how I missed this.
I'll try to update it soon. Thanks for using EasyBMP. :-) -- Paul.
2008-01-25 21:17:03 UTC by macklin01
-
Hi, and thank you for your post.
I suspect that you are looking for glut32.dll, part of the GLUT cross-platform library for GUIs for OpenGL. I'd look at the following site:
http://www.xmission.com/~nate/glut.html
Thanks for using EasyBMP -- Paul.
2008-01-25 21:14:39 UTC by macklin01
-
I can't run the Nixon demo exe. There is a complaint about gut32.dll missing. When I add the dll from any of the available download sites that I found on the internet, I got an 'Entry point not found' error. Which version of the gut32.dll were you using and how can I get it?
I have also emailed Paul directly.
TKS
email to lage@reacttech.com.
2008-01-25 20:48:37 UTC by nobody
-
In the EasyBMP.h header, the following code:
#ifdef _MSC_VER
// MS Visual Studio gives warnings when using
// fopen. But fopen_s is not going to work well
// with most compilers, and fopen_s uses different
// syntax than fopen. (i.e., a macro won't work)
// So, we'lll use this:
#define _CRT_SECURE_NO_DEPRECATE
#endif
should be changed to this:
#ifdef _MSC_VER
// MS Visual...
2007-02-22 18:25:16 UTC by redbaran97
-
Thanks for emailing me to follow up.
For those who may be reading this, the solution was to include EasyBMP.cpp in the project.
Thank you for using EasyBMP, and please feel free to open a new support request and/or email me with any additional questions, comments, or concerns.
Best wishes -- Paul.
2007-01-01 23:21:19 UTC by macklin01
-
From what I can see, EasyBMP.cpp didn't get compiled. That means that the EasyBMP functions are missing for the linker. Is there some way to import those files into your project?
In the meantime, I'll reinstall MSVS on my machine and see what I can dig out. Thanks -- Paul.
2006-12-29 17:50:31 UTC by macklin01
-
From what I can see, EasyBMP.cpp didn't get compiled. That means that the EasyBMP functions are missing for the linker. Is there some way to import those files into your project?
In the meantime, I'll reinstall MSVS on my machine and see what I can dig out. Thanks -- Paul.
2006-12-29 17:43:31 UTC by macklin01