7 lines
117 B
Text
7 lines
117 B
Text
|
|
// Copyright 2020 Google LLC
|
||
|
|
|
||
|
|
[shader("miss")]
|
||
|
|
void main([[vk::location(2)]] in bool shadowed)
|
||
|
|
{
|
||
|
|
shadowed = false;
|
||
|
|
}
|