X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-script-v8%2Fsrc%2Fconstants%2Fconstants-wrapper.cpp;h=ea4e120428a8912222d91aaee9e7201e96b54532;hb=refs%2Fchanges%2F49%2F88249%2F1;hp=1c3b826ad3ea60cb4323d5321bd729292ffcda1a;hpb=a80b01449dd3c91d092b56e16e0cea06b32584e7;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-script-v8/src/constants/constants-wrapper.cpp b/plugins/dali-script-v8/src/constants/constants-wrapper.cpp index 1c3b826..ea4e120 100644 --- a/plugins/dali-script-v8/src/constants/constants-wrapper.cpp +++ b/plugins/dali-script-v8/src/constants/constants-wrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 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. @@ -27,14 +27,12 @@ #include #include #include -#include -#include #include #include #include #include -#include -#include +#include +#include #include #include @@ -159,7 +157,6 @@ const IntegerPair EnumTable[] = { "DRAW_MODE_NORMAL", DrawMode::NORMAL }, { "DRAW_MODE_OVERLAY_2D", DrawMode::OVERLAY_2D }, - { "DRAW_MODE_STENCIL", DrawMode::STENCIL }, { "RESOURCE_LOADING", Dali::ResourceLoading }, { "RESOURCE_LOADING_SUCCEEDED", Dali::ResourceLoadingSucceeded }, @@ -178,29 +175,29 @@ const IntegerPair EnumTable[] = { "SAMPLING_MODE_NO_FILTER", SamplingMode::NO_FILTER }, { "SAMPLING_MODE_DONT_CARE", SamplingMode::DONT_CARE }, - { "BLEND_FACTOR_ZERO", BlendingFactor::ZERO }, - { "BLEND_FACTOR_ONE", BlendingFactor::ONE }, - { "BLEND_FACTOR_SRC_COLOR", BlendingFactor::SRC_COLOR }, - { "BLEND_FACTOR_ONE_MINUS_SRC_COLOR", BlendingFactor::ONE_MINUS_SRC_COLOR }, - { "BLEND_FACTOR_SRC_ALPHA", BlendingFactor::SRC_ALPHA }, - { "BLEND_FACTOR_ONE_MINUS_SRC_ALPHA", BlendingFactor::ONE_MINUS_SRC_ALPHA }, - { "BLEND_FACTOR_DST_ALPHA", BlendingFactor::DST_ALPHA }, - { "BLEND_FACTOR_ONE_MINUS_DST_ALPHA", BlendingFactor::ONE_MINUS_DST_ALPHA }, - { "BLEND_FACTOR_DST_COLOR", BlendingFactor::DST_COLOR }, - { "BLEND_FACTOR_ONE_MINUS_DST_COLOR", BlendingFactor::ONE_MINUS_DST_COLOR }, - { "BLEND_FACTOR_SRC_ALPHA_SATURATE", BlendingFactor::SRC_ALPHA_SATURATE }, - { "BLEND_FACTOR_CONSTANT_COLOR", BlendingFactor::CONSTANT_COLOR }, - { "BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR", BlendingFactor::ONE_MINUS_CONSTANT_COLOR }, - { "BLEND_FACTOR_CONSTANT_ALPHA" , BlendingFactor::CONSTANT_ALPHA }, - { "BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA", BlendingFactor::ONE_MINUS_CONSTANT_ALPHA }, - - { "BLENDING_OFF", BlendingMode::OFF }, - { "BLENDING_AUTO", BlendingMode::AUTO }, - { "BLENDING_ON", BlendingMode::ON }, - - { "BLEND_EQUATION_ADD", BlendingEquation::ADD }, - { "BLEND_EQUATION_SUBTRACT", BlendingEquation::SUBTRACT }, - { "BLEND_EQUATION_REVERSE_SUBTRACT", BlendingEquation::REVERSE_SUBTRACT }, + { "BLEND_FACTOR_ZERO", BlendFactor::ZERO }, + { "BLEND_FACTOR_ONE", BlendFactor::ONE }, + { "BLEND_FACTOR_SRC_COLOR", BlendFactor::SRC_COLOR }, + { "BLEND_FACTOR_ONE_MINUS_SRC_COLOR", BlendFactor::ONE_MINUS_SRC_COLOR }, + { "BLEND_FACTOR_SRC_ALPHA", BlendFactor::SRC_ALPHA }, + { "BLEND_FACTOR_ONE_MINUS_SRC_ALPHA", BlendFactor::ONE_MINUS_SRC_ALPHA }, + { "BLEND_FACTOR_DST_ALPHA", BlendFactor::DST_ALPHA }, + { "BLEND_FACTOR_ONE_MINUS_DST_ALPHA", BlendFactor::ONE_MINUS_DST_ALPHA }, + { "BLEND_FACTOR_DST_COLOR", BlendFactor::DST_COLOR }, + { "BLEND_FACTOR_ONE_MINUS_DST_COLOR", BlendFactor::ONE_MINUS_DST_COLOR }, + { "BLEND_FACTOR_SRC_ALPHA_SATURATE", BlendFactor::SRC_ALPHA_SATURATE }, + { "BLEND_FACTOR_CONSTANT_COLOR", BlendFactor::CONSTANT_COLOR }, + { "BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR", BlendFactor::ONE_MINUS_CONSTANT_COLOR }, + { "BLEND_FACTOR_CONSTANT_ALPHA" , BlendFactor::CONSTANT_ALPHA }, + { "BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA", BlendFactor::ONE_MINUS_CONSTANT_ALPHA }, + + { "BLEND_MODE_OFF", BlendMode::OFF }, + { "BLEND_MODE_AUTO", BlendMode::AUTO }, + { "BLEND_MODE_ON", BlendMode::ON }, + + { "BLEND_EQUATION_ADD", BlendEquation::ADD }, + { "BLEND_EQUATION_SUBTRACT", BlendEquation::SUBTRACT }, + { "BLEND_EQUATION_REVERSE_SUBTRACT", BlendEquation::REVERSE_SUBTRACT }, { "CAMERA_FREE_LOOK" , Camera::FREE_LOOK }, { "CAMERA_LOOK_AT_TARGET" , Camera::LOOK_AT_TARGET }, @@ -217,14 +214,14 @@ const IntegerPair EnumTable[] = { "WRAP_MODE_REPEAT", WrapMode::REPEAT }, { "WRAP_MODE_MIRRORED_REPEAT", WrapMode::MIRRORED_REPEAT }, - { "RENDERER_CULL_NONE", Renderer::CULL_NONE }, - { "RENDERER_CULL_BACK", Renderer::CULL_BACK }, - { "RENDERER_CULL_FRONT", Renderer::CULL_FRONT }, - { "RENDERER_CULL_BACK_AND_FRONT", Renderer::CULL_BACK_AND_FRONT }, + { "FACE_CULLING_NONE", FaceCullingMode::NONE }, + { "FACE_CULLING_BACK", FaceCullingMode::BACK }, + { "FACE_CULLING_FRONT", FaceCullingMode::FRONT }, + { "FACE_CULLING_FRONT_AND_BACK", FaceCullingMode::FRONT_AND_BACK }, - { "RENDERER_DEPTH_WRITE_OFF", Renderer::DEPTH_WRITE_OFF }, - { "RENDERER_DEPTH_WRITE_AUTO", Renderer::DEPTH_WRITE_AUTO }, - { "RENDERER_DEPTH_WRITE_ON", Renderer::DEPTH_WRITE_ON }, + { "DEPTH_WRITE_OFF", DepthWriteMode::OFF }, + { "DEPTH_WRITE_AUTO", DepthWriteMode::AUTO }, + { "DEPTH_WRITE_ON", DepthWriteMode::ON }, { "GEOMETRY_POINTS", Geometry::POINTS }, { "GEOMETRY_LINES", Geometry::LINES }, @@ -278,14 +275,11 @@ const IntegerPair EnumTable[] = { "ALPHA_FUNCTION_SIN", AlphaFunction::SIN }, { "ALPHA_FUNCTION_EASE_OUT_BACK", AlphaFunction::EASE_OUT_BACK }, + { "CLIPPING_MODE_DISABLED", ClippingMode::DISABLED }, + { "CLIPPING_MODE_CLIP_CHILDREN", ClippingMode::CLIP_CHILDREN }, }; const unsigned int EnumTableCount = sizeof(EnumTable)/sizeof(EnumTable[0]); - - - - - } // un-named name space