Photon Engine 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
halton_fwd.h
Go to the documentation of this file.
1#pragma once
2
3#include <Common/primitive_type.h>
4
5#include <memory>
6
7namespace ph::halton_detail
8{
9
10inline constexpr std::size_t MAX_DIMENSIONS = 1024;
11
12using TableDigit = uint16;
13using PermutationTable = std::unique_ptr<TableDigit[]>;
14
15}// end namespace ph::halton_detail
Definition halton.h:20
uint16 TableDigit
Definition halton_fwd.h:12
constexpr std::size_t MAX_DIMENSIONS
Definition halton_fwd.h:10
std::unique_ptr< TableDigit[]> PermutationTable
Definition halton_fwd.h:13