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-09-07 23:44:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-09-07 23:44:01 +0400
commitba95dc859d214aaa56256b0bf2a3ffd3a25689e5 (patch)
tree6b07f8f353a9ee9c2da6feade55a2e33f6ab95a9 /intern/opencolorio
parentf00349293fab23f29ebdf1c4b33bd298fa17284a (diff)
Remove unused constant.
Diffstat (limited to 'intern/opencolorio')
-rw-r--r--intern/opencolorio/fallback_impl.cc2
-rw-r--r--intern/opencolorio/ocio_impl.cc2
2 files changed, 1 insertions, 3 deletions
diff --git a/intern/opencolorio/fallback_impl.cc b/intern/opencolorio/fallback_impl.cc
index 47386bb482d..6b1ca9cbd15 100644
--- a/intern/opencolorio/fallback_impl.cc
+++ b/intern/opencolorio/fallback_impl.cc
@@ -395,6 +395,6 @@ void FallbackImpl::finishGLSLDraw(OCIO_GLSLDrawState * /*state*/)
{
}
-void FallbackImpl::freeGLState(struct OCIO_GLSLDrawState * /*state*/_r)
+void FallbackImpl::freeGLState(struct OCIO_GLSLDrawState * /*state_r*/)
{
}
diff --git a/intern/opencolorio/ocio_impl.cc b/intern/opencolorio/ocio_impl.cc
index 0402c4ee5cf..068a02dcb9b 100644
--- a/intern/opencolorio/ocio_impl.cc
+++ b/intern/opencolorio/ocio_impl.cc
@@ -58,8 +58,6 @@ using namespace OCIO_NAMESPACE;
#define MEM_NEW(type) new(MEM_mallocN(sizeof(type), __func__)) type()
#define MEM_DELETE(what, type) if (what) { ((type*)(what))->~type(); MEM_freeN(what); } (void)0
-static const int LUT3D_EDGE_SIZE = 32;
-
static void OCIO_reportError(const char *err)
{
std::cerr << "OpenColorIO Error: " << err << std::endl;