You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #jira none #ROBOMERGE-SOURCE: CL 12167222 in //UE4/Release-4.25/... via CL 12167228 #ROBOMERGE-BOT: RELEASE (Release-4.25Plus -> Main) (v661-12148976) [CL 12167236 by charles derousiers in Main branch]
21 lines
278 B
Plaintext
21 lines
278 B
Plaintext
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
struct FDebugShadingInfo
|
|
{
|
|
float3 BaseColor;
|
|
float Roughness;
|
|
float3 T;
|
|
uint SampleCount;
|
|
float3 V;
|
|
uint SampleOffset;
|
|
};
|
|
|
|
struct FDebugSample
|
|
{
|
|
float3 Direction;
|
|
float Pdf;
|
|
float3 Weight;
|
|
float Pad;
|
|
}; |