GIProbe.Subdiv/subdiv - multiple declarations

Function GIProbe.subdiv

Number of times to subdivide the grid that the GIProbe operates on. A higher number results in finer detail and thus higher visual quality, while lower numbers result in better performance.

GIProbe.Subdiv subdiv() nothrow @property @nogc;

void subdiv (
  long v
) nothrow @property @nogc;

Enum GIProbe.Subdiv

enum Subdiv : int { ... }

Enum members

NameDescription
subdiv128 Use 128 subdivisions. This is the default quality setting.
subdiv256 Use 256 subdivisions.
subdiv512 Use 512 subdivisions. This is the highest quality setting, but the slowest. On lower-end hardware this could cause the GPU to stall.
subdiv64 Use 64 subdivisions. This is the lowest quality setting, but the fastest. Use it if you can, but especially use it on lower-end hardware.
subdivMax Represents the size of the subdiv enum.