-
I tried to build glew from svn (560) and i think the registry parser is letting too much through :
GL_EXT_direct_state_access:
typedef
2009-10-25 19:28:53 UTC in The OpenGL Extension Wrangler Library
-
You use "head -6 ..." and "tail +7 ...".
I think this should be
"head -n6 ..." and "tail -n+7 ..."
to get a correct ATI/texture_env_combine3.txt.
I am running head/tail 7.6 (GNU coreutils).
2009-10-25 19:15:20 UTC in The OpenGL Extension Wrangler Library
-
Found it, i checkout the wrong branch.
You may wanna change your checkout instruction on
http://www.cubicvr.org/index.php?option=com_content&view=article&id=59&Itemid=67
I may be back with questions after looking at it.
2009-08-12 19:02:00 UTC in CubicVR
-
I just checked out 1144 and i could not find any sign of PCSS in your shaders or source.
According to your features list you have implemented that in CubicVR.
Is PCSS really implemented ?.
2009-08-11 17:19:25 UTC in CubicVR
-
Since mouse deltas are sometimes broken in SDL when the mouse is grabbed (sdl_video:wm_grabInput) while the mouse is moving the camera is rotated wrongly sometimes.
How to reproduce:
1. change to Blender camera
2. while moving the mouse fairly fast click middle mouse button -> sometimes you will see the camera gets rotated wrongly
I dont think you need to grab the mouse in wings since...
2009-07-25 08:48:26 UTC in Wings 3D
-
glm-0.8.3.3
Should be :
for(typename genType::size_type i = 0; i < genType::row_size(); ++i)
You missed the function call so it returned a function pointer: genType::row_size.
2009-07-18 10:29:33 UTC in OpenGL Framework (GLF)
-
aha, so perhaps i should go for 2.7-lite if i shall use 2.7 ?
i.e. is 2.7-lite more up to date and the version u aim to mainly develop/support ?.
2009-06-29 17:25:42 UTC in GLFW
-
it wasnt that hard to find :
2.7 uses glXCreateNewContext (GLX>=1.3) and 2.6 uses glXCreateContext.
glXCreateNewContext call should be :
_glfwWin.context = glXCreateNewContext( _glfwLibrary.display, _glfwWin.fbconfig, GLX_RGBA_TYPE, NULL, True );
Perhaps GLX_RGBA_TYPE has been 0 before but it is 32788 on my platform.
From spec...
2009-06-29 15:09:28 UTC in GLFW
-
well, i am running your gears test app my post but i get the same error when i run my own apps which are fine with glfw 2.6.
2009-06-23 20:01:26 UTC in GLFW
-
I tried the trunk glfw today and get the following immediate crash :
bifrost:~/glfw/trunk/examples$ ./gears
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 135 (GLX)
Minor opcode of failed request: 24 (X_GLXCreateNewContext)
Value in failed request: 0x0
Serial number of failed request: 0
Current serial...
2009-06-23 16:37:11 UTC in GLFW