[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50020] branches/soc-2012-swiss_cheese/ source/blender/gpu/intern/gpu_aspect.h: fixed warning about const qualifier on function parameter

Jason Wilkins Jason.A.Wilkins at gmail.com
Sun Aug 19 17:32:52 CEST 2012


Revision: 50020
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50020
Author:   jwilkins
Date:     2012-08-19 15:32:52 +0000 (Sun, 19 Aug 2012)
Log Message:
-----------
fixed warning about const qualifier on function parameter

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

Modified: branches/soc-2012-swiss_cheese/source/blender/gpu/intern/gpu_aspect.h
===================================================================
--- branches/soc-2012-swiss_cheese/source/blender/gpu/intern/gpu_aspect.h	2012-08-19 15:28:24 UTC (rev 50019)
+++ branches/soc-2012-swiss_cheese/source/blender/gpu/intern/gpu_aspect.h	2012-08-19 15:32:52 UTC (rev 50020)
@@ -51,8 +51,8 @@
 void gpuDeleteAspects(GLsizei count, const GLuint* aspects);
 
 typedef struct GPUaspectfuncs {
-	GLboolean (*begin)(GLvoid* param, GLvoid* object);
-	GLboolean (*end)(GLvoid* param, GLvoid* object);
+	GLboolean (*begin)(GLvoid* param, const GLvoid* object);
+	GLboolean (*end)(GLvoid* param, const GLvoid* object);
 	GLvoid* param;
 } GPUaspectfuncs;
 




More information about the Bf-blender-cvs mailing list