Switch from Nz prefix to namespace Nz
What a huge commit Former-commit-id: 38ac5eebf70adc1180f571f6006192d28fb99897
This commit is contained in:
@@ -9,18 +9,21 @@
|
||||
|
||||
#include <Nazara/Prerequesites.hpp>
|
||||
|
||||
struct NzRenderTargetParameters
|
||||
namespace Nz
|
||||
{
|
||||
NzRenderTargetParameters(nzUInt8 antialiasing = 0, nzUInt8 depth = 24, nzUInt8 stencil = 0) :
|
||||
antialiasingLevel(antialiasing),
|
||||
depthBits(depth),
|
||||
stencilBits(stencil)
|
||||
struct RenderTargetParameters
|
||||
{
|
||||
}
|
||||
RenderTargetParameters(UInt8 antialiasing = 0, UInt8 depth = 24, UInt8 stencil = 0) :
|
||||
antialiasingLevel(antialiasing),
|
||||
depthBits(depth),
|
||||
stencilBits(stencil)
|
||||
{
|
||||
}
|
||||
|
||||
nzUInt8 antialiasingLevel;
|
||||
nzUInt8 depthBits;
|
||||
nzUInt8 stencilBits;
|
||||
};
|
||||
UInt8 antialiasingLevel;
|
||||
UInt8 depthBits;
|
||||
UInt8 stencilBits;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_RENDERTARGETPARAMETERS_HPP
|
||||
|
||||
Reference in New Issue
Block a user