33 lines
653 B
C++
33 lines
653 B
C++
// Copyright (C) 2020 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Graphics module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_ENUMS_GRAPHICS_HPP
|
|
#define NAZARA_ENUMS_GRAPHICS_HPP
|
|
|
|
namespace Nz
|
|
{
|
|
enum class CullTest
|
|
{
|
|
Box,
|
|
NoTest,
|
|
Sphere,
|
|
Volume
|
|
};
|
|
|
|
enum PredefinedShaderBinding
|
|
{
|
|
PredefinedShaderBinding_TexOverlay,
|
|
PredefinedShaderBinding_UboInstanceData,
|
|
PredefinedShaderBinding_UboLighData,
|
|
PredefinedShaderBinding_UboViewerData,
|
|
|
|
PredefinedShaderBinding_Max = PredefinedShaderBinding_UboViewerData
|
|
};
|
|
|
|
}
|
|
|
|
#endif // NAZARA_ENUMS_GRAPHICS_HPP
|