10 lines
82 B
GLSL
10 lines
82 B
GLSL
|
|
uniform float f;
|
|
|
|
float4 main() : SV_Target0
|
|
{
|
|
isfinite(f);
|
|
|
|
return 0;
|
|
}
|