blob: 2c833b542084e17ac28bf478d8b523b1be679099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef SLANG_IR_VK_INVERT_Y_H
#define SLANG_IR_VK_INVERT_Y_H
namespace Slang
{
struct IRModule;
void invertYOfPositionOutput(IRModule* module);
void rcpWOfPositionInput(IRModule* module);
} // namespace Slang
#endif
|