您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
18 行
625 B
18 行
625 B
#ifndef __REGULARFORWARDREFLECTIONTEMPLATE_H__
|
|
#define __REGULARFORWARDREFLECTIONTEMPLATE_H__
|
|
|
|
|
|
#include "RegularForwardLightingUtils.hlsl"
|
|
#include "ReflectionTemplate.hlsl"
|
|
|
|
|
|
float3 ExecuteReflectionList(out uint numReflectionProbesProcessed, uint2 pixCoord, float3 vP, float3 vNw, float3 Vworld, float smoothness)
|
|
{
|
|
uint start = 0, numReflectionProbes = 0;
|
|
GetCountAndStart(start, numReflectionProbes, REFLECTION_LIGHT);
|
|
|
|
numReflectionProbesProcessed = numReflectionProbes; // mainly for debugging/heat maps
|
|
return ExecuteReflectionList(start, numReflectionProbes, vP, vNw, Vworld, smoothness);
|
|
}
|
|
|
|
#endif
|