.. role:: ts-api-decorator

.. _cee.TextureMinFilter:

################
TextureMinFilter
################

.. js:module:: cee
   :noindex:

.. container:: ts-api-section

   Specifies the minifying filtering used when doing the texture mapping.



.. container:: api-index-section

   .. rubric:: Enumeration Members

   .. rst-class:: api-index-list-item api-kind-enummember api-parent-kind-enum

   * :ref:`cee.TextureMinFilter.LINEAR`
   * :ref:`cee.TextureMinFilter.LINEAR_MIPMAP_LINEAR`
   * :ref:`cee.TextureMinFilter.LINEAR_MIPMAP_NEAREST`
   * :ref:`cee.TextureMinFilter.NEAREST`
   * :ref:`cee.TextureMinFilter.NEAREST_MIPMAP_LINEAR`
   * :ref:`cee.TextureMinFilter.NEAREST_MIPMAP_NEAREST`





------------

Enumeration Members
===================

.. rst-class:: ts-api-section

.. _cee.TextureMinFilter.LINEAR:

LINEAR
------

Linear filtering on the base MipMap level. (Default magnification filter in OpenGL). Texture will look blurry when zoomed into.

.. rst-class:: ts-api-section

.. _cee.TextureMinFilter.LINEAR_MIPMAP_LINEAR:

LINEAR_MIPMAP_LINEAR
--------------------

Perform linear interpolation between MipMap levels and perform linear filtering (trilinear mipmapping).

.. rst-class:: ts-api-section

.. _cee.TextureMinFilter.LINEAR_MIPMAP_NEAREST:

LINEAR_MIPMAP_NEAREST
---------------------

Selects nearest MipMap level and performs linear filtering.

.. rst-class:: ts-api-section

.. _cee.TextureMinFilter.NEAREST:

NEAREST
-------

Nearest neighbor filtering on the base MipMap level. Texture will look blocky when zoom into.

.. rst-class:: ts-api-section

.. _cee.TextureMinFilter.NEAREST_MIPMAP_LINEAR:

NEAREST_MIPMAP_LINEAR
---------------------

Perform linear interpolation between MipMap levels and perform nearest neighbor filtering. (Default minifying filter in OpenGL).

.. rst-class:: ts-api-section

.. _cee.TextureMinFilter.NEAREST_MIPMAP_NEAREST:

NEAREST_MIPMAP_NEAREST
----------------------

Selects nearest MipMap level and performs nearest neighbor filtering.

