X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Frender-tasks%2Fscene-graph-render-task-debug.h;h=655fa2690ce2d93397df83875c0c14dabe25f3d2;hb=4d75040ab200bd306ec5a48f2a617480062eef4c;hp=805cd0028a78b2f5b1c828aa45cd1c4075489e7d;hpb=ce20e9f082e811130930d13c9e9edc1da4ce1013;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/update/render-tasks/scene-graph-render-task-debug.h b/dali/internal/update/render-tasks/scene-graph-render-task-debug.h old mode 100644 new mode 100755 index 805cd00..655fa26 --- a/dali/internal/update/render-tasks/scene-graph-render-task-debug.h +++ b/dali/internal/update/render-tasks/scene-graph-render-task-debug.h @@ -1,21 +1,22 @@ #ifndef __DALI_INTERNAL_SCENE_GRAPH_RENDER_TASK_DEBUG_H__ #define __DALI_INTERNAL_SCENE_GRAPH_RENDER_TASK_DEBUG_H__ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +/* + * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ #if defined(DEBUG_ENABLED) Debug::Filter* gRenderTaskLogFilter = Debug::Filter::New(Debug::NoLogging, false, "LOG_SCENE_GRAPH_RENDER_TASK"); @@ -29,14 +30,12 @@ Debug::Filter* gRenderTaskLogFilter = Debug::Filter::New(Debug::NoLogging, false #define TASK_LOG(level) \ DALI_LOG_INFO(gRenderTaskLogFilter, level, "SceneGraph::RenderTask::%s: this:%p\n", __FUNCTION__, this) -#define TASK_LOG_FMT(level, format, args...) \ - DALI_LOG_INFO(gRenderTaskLogFilter, level, "SceneGraph::RenderTask::%s: this:%p " format, __FUNCTION__, this, ## args) - +#define TASK_LOG_FMT(level, format, ...) \ + DALI_LOG_INFO(gRenderTaskLogFilter, level, "SceneGraph::RenderTask::%s: this:%p " format, __FUNCTION__, this, ## __VA_ARGS__) #else #define TASK_LOG(level) -#define TASK_LOG_FMT(level, format, args...) - +#define TASK_LOG_FMT(level, format, ...) #endif #endif // __DALI_INTERNAL_SCENE_GRAPH_RENDER_TASK_DEBUG_H__