Просмотр исходного кода

Merge pull request #4361 from ReinUsesLisp/lane-id

decode/other: Implement S2R.LaneId
Rodrigo Locatti 6 лет назад
Родитель
Сommit
9ea9a60e17
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      src/video_core/shader/decode/other.cpp

+ 1 - 2
src/video_core/shader/decode/other.cpp

@@ -75,8 +75,7 @@ u32 ShaderIR::DecodeOther(NodeBlock& bb, u32 pc) {
         const Node value = [this, instr] {
             switch (instr.sys20) {
             case SystemVariable::LaneId:
-                LOG_WARNING(HW_GPU, "S2R instruction with LaneId is incomplete");
-                return Immediate(0U);
+                return Operation(OperationCode::ThreadId);
             case SystemVariable::InvocationId:
                 return Operation(OperationCode::InvocationId);
             case SystemVariable::Ydirection: