source view bottom bar -> warn if file timestamp is newer than currently-used debug info

This commit is contained in:
Ryan Fleury
2024-01-18 16:53:30 -08:00
parent 23572ca63f
commit b5e604e6c8
3 changed files with 63 additions and 11 deletions
@@ -190,6 +190,10 @@ str8_lit_comp(
" {\n"
" border_sdf_t = 1;\n"
" }\n"
" if(border_sdf_t < 0.001f)\n"
" {\n"
" discard;\n"
" }\n"
" \n"
" // rjf: form+return final color\n"
" float4 final_color = albedo_sample;\n"
+4
View File
@@ -189,6 +189,10 @@ ps_main(Vertex2Pixel vertex2pixel) : SV_TARGET
{
border_sdf_t = 1;
}
if(border_sdf_t < 0.001f)
{
discard;
}
// rjf: form+return final color
float4 final_color = albedo_sample;