[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55806] trunk/blender/intern/opencolorio/ ocio_impl_glsl.cc: Fixed typo in OCIO GLSL module, was using address to a pointer..

Sergey Sharybin sergey.vfx at gmail.com
Fri Apr 5 13:11:00 CEST 2013


Revision: 55806
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55806
Author:   nazgul
Date:     2013-04-05 11:10:59 +0000 (Fri, 05 Apr 2013)
Log Message:
-----------
Fixed typo in OCIO GLSL module, was using address to a pointer..

Modified Paths:
--------------
    trunk/blender/intern/opencolorio/ocio_impl_glsl.cc

Modified: trunk/blender/intern/opencolorio/ocio_impl_glsl.cc
===================================================================
--- trunk/blender/intern/opencolorio/ocio_impl_glsl.cc	2013-04-05 11:02:32 UTC (rev 55805)
+++ trunk/blender/intern/opencolorio/ocio_impl_glsl.cc	2013-04-05 11:10:59 UTC (rev 55806)
@@ -195,7 +195,7 @@
 
 	glTexImage3D(GL_TEXTURE_3D, 0, GL_RGB16F_ARB,
 	             LUT3D_EDGE_SIZE, LUT3D_EDGE_SIZE, LUT3D_EDGE_SIZE,
-	             0, GL_RGB,GL_FLOAT, &state->lut3d);
+	             0, GL_RGB, GL_FLOAT, state->lut3d);
 
 	state->lut3d_texture_allocated = true;
 




More information about the Bf-blender-cvs mailing list