You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
327 B
13 lines
327 B
using System;
|
|
|
|
namespace UnityEngine.Rendering.PostProcessing
|
|
{
|
|
internal abstract class Upscaler
|
|
{
|
|
public abstract void CreateContext(PostProcessRenderContext context, Upscaling config);
|
|
|
|
public abstract void DestroyContext();
|
|
|
|
public abstract void Render(PostProcessRenderContext context, Upscaling config);
|
|
}
|
|
}
|