X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI%2Fsrc%2Fpublic%2FCommon%2FNUIConstants.cs;h=1976c75e97c8eddb50f400e4a8e7187b79b3cfa4;hb=356735635293d7629ef8cc9aa9a247b84e336cce;hp=4952ff4d52a7268aa7e64afcb461da6976a09fb8;hpb=43432013e3ed6fc337d1f384a7202eedb60aa6e0;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/public/Common/NUIConstants.cs b/src/Tizen.NUI/src/public/Common/NUIConstants.cs index 4952ff4..1976c75 100755 --- a/src/Tizen.NUI/src/public/Common/NUIConstants.cs +++ b/src/Tizen.NUI/src/public/Common/NUIConstants.cs @@ -1950,43 +1950,38 @@ namespace Tizen.NUI /// If the device can not support GLES version 3.0 over, the version will be chosen with GLES version 2.0.
/// It is for GLWindow and GLView.
/// + /// 9 [EditorBrowsable(EditorBrowsableState.Never)] public enum GLESVersion { /// /// GLES version 2.0 /// - [EditorBrowsable(EditorBrowsableState.Never)] Version20 = 0, /// /// GLES version 3.0 /// - [EditorBrowsable(EditorBrowsableState.Never)] Version30 } /// /// Enumeration for rendering mode /// This Enumeration is used to choose the rendering mode. - /// It has two options. - /// One of them is continuous mode. It is rendered continuously. - /// The other is on demand mode. It is rendered by application. /// It is for GLWindow and GLView. /// + /// 9 [EditorBrowsable(EditorBrowsableState.Never)] public enum GLRenderingMode { /// - /// continuous mode + /// The render frame delegate is invoked continuously. /// - [EditorBrowsable(EditorBrowsableState.Never)] Continuous = 0, /// - /// on demand by application + /// The render frame delegate is invoked by user. /// - [EditorBrowsable(EditorBrowsableState.Never)] OnDemand = 1 }