Files
MobileGL/MobileGL/MG_State/GLState/ErrorState/ErrorCode.h
T

22 lines
582 B
C++

// MobileGL - MobileGL/MG_State/GLState/ErrorState/ErrorCode.h
// Copyright (c) 2025-2026 MobileGL-Dev
// Licensed under the GNU Lesser General Public License v2.1:
// http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
// SPDX-License-Identifier: LGPL-2.1-only
// End of Source File Header
#pragma once
namespace MobileGL {
enum class ErrorCode {
NoError = 0,
InvalidEnum,
InvalidValue,
InvalidOperation,
InvalidFramebufferOperation,
OutOfMemory,
StackUnderflow,
StackOverflow
};
} // namespace MobileGL