Merge pull request #2758 from ReinUsesLisp/packed-tid

shader/decode: Implement S2R Tic
This commit is contained in:
bunnei
2019-08-29 12:58:43 -04:00
committed by GitHub
3 changed files with 15 additions and 0 deletions

View File

@ -280,6 +280,9 @@ private:
/// Extracts a sequence of bits from a node
Node BitfieldExtract(Node value, u32 offset, u32 bits);
/// Inserts a sequence of bits from a node
Node BitfieldInsert(Node base, Node insert, u32 offset, u32 bits);
void WriteTexInstructionFloat(NodeBlock& bb, Tegra::Shader::Instruction instr,
const Node4& components);