[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [49740] branches/soc-2012-swiss_cheese/ source/blender/gpu/GPU_compatibility.h: No need for glMultMatrixf and glLoadMatrixf trick.

Alexander Kuznetsov kuzsasha at gmail.com
Thu Aug 9 19:15:18 CEST 2012


Revision: 49740
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=49740
Author:   alexk
Date:     2012-08-09 17:15:18 +0000 (Thu, 09 Aug 2012)
Log Message:
-----------
No need for glMultMatrixf and glLoadMatrixf trick.

Modified Paths:
--------------
    branches/soc-2012-swiss_cheese/source/blender/gpu/GPU_compatibility.h

Modified: branches/soc-2012-swiss_cheese/source/blender/gpu/GPU_compatibility.h
===================================================================
--- branches/soc-2012-swiss_cheese/source/blender/gpu/GPU_compatibility.h	2012-08-09 17:07:01 UTC (rev 49739)
+++ branches/soc-2012-swiss_cheese/source/blender/gpu/GPU_compatibility.h	2012-08-09 17:15:18 UTC (rev 49740)
@@ -49,15 +49,6 @@
 #endif
 
 
-// don't commit this!
-#ifdef GLES
-#define glMultMatrixf(x)  fake_glMultMatrixf( (float *)(x))
-#define glLoadMatrixf(x)  fake_glLoadMatrixf( (float *)(x))
-#else
-#define glMultMatrixf(x)  glMultMatrixf( (float *)(x))
-#define glLoadMatrixf(x)  glLoadMatrixf( (float *)(x))
-#endif
 
 
-
 #endif /* __GPU_COMPATIBILITY_H_ */




More information about the Bf-blender-cvs mailing list