summaryrefslogtreecommitdiff
path: root/source/slang/slang-ir-wrap-structured-buffers.h
blob: 28ab4c4f15df9489c189b3f2da48ab687b804c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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);
}