summaryrefslogtreecommitdiffstats
path: root/src/libs/dxvk-native-1.9.2a/src/dxso/dxso_modinfo.h
blob: 410c90f3872991730e2e4e7bd1c720c3a9d55a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "dxso_options.h"

namespace dxvk {

  /**
   * \brief Shader module info
   *
   * Stores information which may affect shader compilation.
   * This data can be supplied by the client API implementation.
   */
  struct DxsoModuleInfo {
    DxsoOptions options;
  };

}