Release 4.0.0-preview1-00301
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / FilterModeType.cs
index 3fa9793..9a36257 100755 (executable)
@@ -1,34 +1,77 @@
-/** Copyright (c) 2017 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.
-*
-*/
+/*
+ * Copyright(c) 2017 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.
+ *
+ */
 
 namespace Tizen.NUI
 {
     /// <summary>
     /// The filter mode type.
-    /// <summary>
+    /// </summary>
     /// <since_tizen> 3 </since_tizen>
     public enum FilterModeType
     {
+        /// <summary>
+        /// Use GL defaults (minification NEAREST_MIPMAP_LINEAR, magnification LINEAR).
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         NONE = 0,
+        /// <summary>
+        /// Use Dali defaults (minification LINEAR, magnification LINEAR).
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         DEFAULT,
+        /// <summary>
+        /// Filter nearest.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         NEAREST,
+        /// <summary>
+        /// Filter linear.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         LINEAR,
+        /// <summary>
+        /// Chooses the mipmap that most closely matches the size of the pixel being
+        /// textured and uses the GL_NEAREST criterion (the texture element closest to
+        /// the specified texture coordinates) to produce a texture value.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         NEAREST_MIPMAP_NEAREST,
+        /// <summary>
+        /// Chooses the mipmap that most closely matches the size of the pixel being textured
+        /// and uses the GL_LINEAR criterion (a weighted average of the four texture elements
+        /// that are closest to the specified texture coordinates) to produce a texture value.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         LINEAR_MIPMAP_NEAREST,
+        /// <summary>
+        /// Chooses the two mipmaps that most closely match the size of the pixel being textured
+        /// and uses the GL_NEAREST criterion (the texture element closest to the specified texture
+        /// coordinates ) to produce a texture value from each mipmap. The final texture value is a
+        /// weighted average of those two values.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         NEAREST_MIPMAP_LINEAR,
+        /// <summary>
+        /// Chooses the two mipmaps that most closely match the size of the pixel being textured and
+        /// uses the GL_LINEAR criterion (a weighted average of the texture elements that are closest
+        /// to the specified texture coordinates) to produce a texture value from each mipmap. The final
+        /// texture value is a weighted average of those two values.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         LINEAR_MIPMAP_LINEAR
     }