34 lines
629 B
C++
34 lines
629 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 class PredefinedShaderBinding
|
|
{
|
|
TexOverlay,
|
|
UboInstanceData,
|
|
UboLighData,
|
|
UboViewerData,
|
|
|
|
Max = UboViewerData
|
|
};
|
|
|
|
constexpr std::size_t PredefinedShaderBindingCount = static_cast<std::size_t>(PredefinedShaderBinding::Max) + 1;
|
|
}
|
|
|
|
#endif // NAZARA_ENUMS_GRAPHICS_HPP
|