blob: 2074c3b8d4b62d7b0ace3af511e7e891011eb147 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//TEST:LANG_SERVER(filecheck=CHECK):
module "test-main";
import bsdfs;
LambertDiffuseBTDF createTranslucent(float3 color, float3 normal)
{
//HOVER:10,21
return LambertDiffuseBTDF( color );
}
//CHECK: LambertDiffuseBTDF.init
|