struct MAGES::MeshDeformations::Editor::AlbedoBaker::BakeResult

Overview

The baked texture plus coverage/telemetry counters for the summary log. More…

struct BakeResult
{
    // fields

    Texture2D Texture;
    int CoveredTexels;
    int RayHits;
    int ClosestPointFallbacks;
};

Detailed Documentation

The baked texture plus coverage/telemetry counters for the summary log.

Fields

Texture2D Texture

The baked albedo texture (RGBA32, no mipmaps). Caller owns it.

int CoveredTexels

Number of texels covered by the UV rasterization (pre-dilation).

int RayHits

Covered texels resolved by a ±normal ray hit.

int ClosestPointFallbacks

Covered texels resolved by the closest-point fallback (ray miss).