Interface Engine.BackendApi

Enclosing interface:
Engine

public static interface Engine.BackendApi
Possible 3D APIs that may be used by Arc3D Engine.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Mock draws nothing.
    static final int
    OpenGL 3.3 to 4.6 core profile (desktop); OpenGL ES 3.0 to 3.2 (mobile)
    static final int
    Vulkan 1.1 to 1.3 (desktop and mobile)
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    static String
    toString(int value)
     
  • Field Details

    • kOpenGL

      static final int kOpenGL
      OpenGL 3.3 to 4.6 core profile (desktop); OpenGL ES 3.0 to 3.2 (mobile)
      See Also:
    • kVulkan

      static final int kVulkan
      Vulkan 1.1 to 1.3 (desktop and mobile)
      See Also:
    • kMock

      static final int kMock
      Mock draws nothing. It is used for unit tests and to measure CPU overhead.
      See Also:
  • Method Details

    • toString

      static String toString(int value)