Enumerations

Enumerations

enum  hal_gfx_tex_t {
  HAL_GFX_NOTEX = -1,
  HAL_GFX_TEX0 = 0,
  HAL_GFX_TEX1 = 1,
  HAL_GFX_TEX2 = 2,
  HAL_GFX_TEX3 = 3
}
 Graphics Texture. More...
 
enum  hal_gfx_tri_cull_t {
  HAL_GFX_CULL_NONE = 0,
  HAL_GFX_CULL_CW = (1U<<28),
  HAL_GFX_CULL_CCW = (1U<<29),
  HAL_GFX_CULL_ALL = HAL_GFX_CULL_CW | HAL_GFX_CULL_CCW
}
 Graphics Triangle Culling methond. More...
 

Detailed Description

Enumeration Type Documentation

◆ hal_gfx_tex_t

Graphics Texture.

Enumerator
HAL_GFX_NOTEX 

No Texture

HAL_GFX_TEX0 

Texture 0

HAL_GFX_TEX1 

Texture 1

HAL_GFX_TEX2 

Texture 2

HAL_GFX_TEX3 

Texture 3

Definition at line 29 of file hal_gfx_graphics.h.

◆ hal_gfx_tri_cull_t

Graphics Triangle Culling methond.

Enumerator
HAL_GFX_CULL_NONE 

Disable Triangle/Quadrilateral Culling

HAL_GFX_CULL_CW 

Cull clockwise Triangles/Quadrilaterals

HAL_GFX_CULL_CCW 

Cull anti-clockwise Triangles/Quadrilaterals

HAL_GFX_CULL_ALL 

Cull all

Definition at line 40 of file hal_gfx_graphics.h.