32 lines
694 B
C++
32 lines
694 B
C++
/*
|
|
# ______ ____ ___
|
|
# | \/ ____| |___|
|
|
# | | | \ | |
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2022, tyra - https://github.com/h4570/tyra
|
|
# Licenced under Apache License 2.0
|
|
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "renderer/3d/pipeline/shared/pipeline_shading_type.hpp"
|
|
#include "../shared/pipeline_lighting_options.hpp"
|
|
|
|
namespace Tyra {
|
|
|
|
class DynPipOptions {
|
|
public:
|
|
DynPipOptions() {}
|
|
~DynPipOptions() {}
|
|
|
|
PipelineShadingType shadingType;
|
|
bool blendingEnabled;
|
|
bool antiAliasingEnabled;
|
|
|
|
/** Optional */
|
|
PipelineLightingOptions* lighting;
|
|
};
|
|
|
|
} // namespace Tyra
|