Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-04-05 15:10:59 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-04-05 15:10:59 +0400
commite579400d922c093c20ac773d4ddd9ea22fff1e0f (patch)
tree366df249c14c5a7d9734b80307255669f12de065 /intern/opencolorio/ocio_impl_glsl.cc
parent7fbebe670218475cb6eddcc34d430502e4d75b26 (diff)
Fixed typo in OCIO GLSL module, was using address to a pointer..
Diffstat (limited to 'intern/opencolorio/ocio_impl_glsl.cc')
-rw-r--r--intern/opencolorio/ocio_impl_glsl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/opencolorio/ocio_impl_glsl.cc b/intern/opencolorio/ocio_impl_glsl.cc
index 62df0b58ed6..cfa758e9a84 100644
--- a/intern/opencolorio/ocio_impl_glsl.cc
+++ b/intern/opencolorio/ocio_impl_glsl.cc
@@ -195,7 +195,7 @@ static bool ensureLUT3DAllocated(OCIO_GLSLDrawState *state)
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;