https://github.com/shader-slang/slang
Raw File
Tip revision: edb9de817218f8753ab2219fe9e7cd6b1afdd304 authored by kaizhangNV on 27 June 2024, 23:52:23 UTC
Enable upload asset for old glibc build (#4501)
Tip revision: edb9de8
serialized-module.slang
//TEST_IGNORE_FILE:

// serialized-module.slang

import serialized_module_shared;

export int foo(Thing thing) 
{ 
    return (thing.a + thing.b) - thing.b; 
}

back to top