Skeleton xenia::gpu::vulkan implementation, enough to start trace viewer.

This commit is contained in:
Ben Vanik
2016-02-17 21:17:12 -08:00
parent ca5902c111
commit 05107d2d3e
16 changed files with 1260 additions and 8 deletions

View File

@@ -1023,6 +1023,14 @@ void Value::VectorSub(Value* other, TypeName type, bool is_unsigned,
}
}
}
break;
case FLOAT32_TYPE:
assert_false(is_unsigned);
assert_false(saturate);
for (int i = 0; i < 4; i++) {
constant.v128.f32[i] -= other->constant.v128.f32[i];
}
break;
default:
assert_unhandled_case(type);
break;