2017-11-01 00:01:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-03-06 18:34:34 +01:00
|
|
|
#include <cctype>
|
|
|
|
|
2017-11-01 00:01:40 +01:00
|
|
|
#include "dxbc_common.h"
|
|
|
|
#include "dxbc_decoder.h"
|
|
|
|
#include "dxbc_enums.h"
|
|
|
|
#include "dxbc_reader.h"
|
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Signature entry
|
|
|
|
*
|
|
|
|
* Stores the semantic name of an input or
|
|
|
|
* output and the corresponding register.
|
|
|
|
*/
|
|
|
|
struct DxbcSgnEntry {
|
|
|
|
std::string semanticName;
|
|
|
|
uint32_t semanticIndex;
|
|
|
|
uint32_t registerId;
|
2017-12-14 12:53:53 +01:00
|
|
|
DxbcRegMask componentMask;
|
2017-11-01 00:01:40 +01:00
|
|
|
DxbcScalarType componentType;
|
|
|
|
DxbcSystemValue systemValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Input/Output signature chunk
|
|
|
|
*
|
|
|
|
* Stores information about the input and
|
|
|
|
* output registers used by the shader stage.
|
|
|
|
*/
|
|
|
|
class DxbcIsgn : public RcObject {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
DxbcIsgn(DxbcReader reader);
|
|
|
|
~DxbcIsgn();
|
|
|
|
|
2017-11-07 15:10:38 +01:00
|
|
|
auto begin() const { return m_entries.cbegin(); }
|
|
|
|
auto end () const { return m_entries.cend(); }
|
2017-11-01 16:43:04 +01:00
|
|
|
|
2018-01-01 23:31:01 +01:00
|
|
|
const DxbcSgnEntry* findByRegister(
|
|
|
|
uint32_t registerId) const;
|
|
|
|
|
2017-12-07 12:45:02 +01:00
|
|
|
const DxbcSgnEntry* find(
|
|
|
|
const std::string& semanticName,
|
|
|
|
uint32_t semanticIndex) const;
|
|
|
|
|
2017-11-01 00:01:40 +01:00
|
|
|
private:
|
|
|
|
|
|
|
|
std::vector<DxbcSgnEntry> m_entries;
|
|
|
|
|
2017-12-30 15:30:31 +01:00
|
|
|
bool compareSemanticNames(
|
|
|
|
const std::string& a,
|
|
|
|
const std::string& b) const;
|
|
|
|
|
2017-11-01 00:01:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|