Share

ErrorStatus

C++

enum ErrorStatus {
  kSuccess,
  kOutOfRange,
  kInvalidInput
};

File

gs.h

Members

Members Description
kSuccess Indicates that the associated function call executed successfully
kOutOfRange Indicates that the value passed into the associated function call is out of range
kInvalidInput Indicates that the value passed into the associated function is invalid

Description

This enumeration contains values for defining error codes in the 3D Graphics System.

Was this information helpful?