toIntValue method

int toIntValue()

Implementation

int toIntValue() {
  switch (this) {
    case EglValue.none:
      return EGL_NONE;
    case EglValue.openglEs2Bit:
      return EGL_OPENGL_ES2_BIT;
    case EglValue.openglEs3Bit:
      return EGL_OPENGL_ES3_BIT;
    default:
      throw UnsupportedError('Unsupported value: $this');
  }
}