您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
14 行
349 B
14 行
349 B
using UnityEngine.Rendering;
|
|
using System;
|
|
|
|
namespace UnityEngine.Experimental.Rendering.HDPipeline
|
|
{
|
|
// For multiple importance sampling
|
|
// TODO: not working currently, will be updated later
|
|
[GenerateHLSL(PackingRules.Exact)]
|
|
public enum LightSamplingParameters
|
|
{
|
|
TextureHeight = 256,
|
|
TextureWidth = 512
|
|
}
|
|
}
|