https://github.com/shader-slang/slang
Raw File
Tip revision: b45e5aa07cf5e2e0bd23cf4c14bb40104b0b641c authored by Yong He on 28 June 2023, 23:09:06 UTC
Fix parameter block loads in GLSL emit. (#2946)
Tip revision: b45e5aa
profile-ignored.slang
// profile-ignored.slang

// Cases where a `-profile` option gets ignored
// because it doesn't apply to any target

// Case 1: multiple (conflicting) profiles, so we can't infer a single stage
//
//DIAGNOSTIC_TEST:SIMPLE:-profile sm_5_0 -profile glsl_450


// Case 2: a `-profile` option before any `-target`, possibly because
// the user is specifying things in the wrong order.
//
//DIAGNOSTIC_TEST:SIMPLE:-profile sm_5_0 -target dxbc -profile glsl_450 -target spirv 
back to top