blob: fc9bfa207282a3e07f7d0102c94bd48d1864f61d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// slang-ir-wrap-structured-buffers.h
#pragma once
namespace Slang
{
struct IRModule;
/// Wrap structured buffer types of matrices for
/// targets that compute incorrect layouts for such
/// types.
///
void wrapStructuredBuffersOfMatrices(IRModule* module);
} // namespace Slang
|