summaryrefslogtreecommitdiffstats
path: root/source/slang/type-system-shared.cpp
blob: 10ebaee242e0cda7728b07ea4b5e3c1d17e25083 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "type-system-shared.h"

namespace Slang
{
    TextureFlavor TextureFlavor::create(SlangResourceShape shape, SlangResourceAccess access)
    {
        TextureFlavor rs;
        rs.flavor = uint16_t(shape | (access << 8));
        return rs;
    }
}