early-access version 3325
This commit is contained in:
parent
13810b8a83
commit
c99dcbc427
5 changed files with 10 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 3324.
|
||||
This is the source code for early-access 3325.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -121,6 +121,8 @@ void Impl(TranslatorVisitor& v, u64 insn, bool is_bindless) {
|
|||
}
|
||||
if (tld.lod != 0) {
|
||||
lod = v.X(meta_reg++);
|
||||
} else {
|
||||
lod = v.ir.Imm32(0U);
|
||||
}
|
||||
if (tld.aoffi != 0) {
|
||||
offset = MakeOffset(v, meta_reg, tld.type);
|
||||
|
|
|
@ -73,7 +73,7 @@ IR::Value Sample(TranslatorVisitor& v, u64 insn) {
|
|||
const IR::Reg reg_a{tlds.src_reg_a};
|
||||
const IR::Reg reg_b{tlds.src_reg_b};
|
||||
IR::Value coords;
|
||||
IR::U32 lod;
|
||||
IR::U32 lod{v.ir.Imm32(0U)};
|
||||
IR::Value offsets;
|
||||
IR::U32 multisample;
|
||||
Shader::TextureType texture_type{};
|
||||
|
|
|
@ -60,10 +60,10 @@
|
|||
<item>
|
||||
<widget class="QLineEdit" name="ip">
|
||||
<property name="toolTip">
|
||||
<string><html><head/><body><p>IPv4 address of the host</p></body></html></string>
|
||||
<string><html><head/><body><p>IP address of the host</p></body></html></string>
|
||||
</property>
|
||||
<property name="maxLength">
|
||||
<number>16</number>
|
||||
<number>253</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
|
@ -38,11 +38,11 @@ private:
|
|||
QRegularExpression(QStringLiteral("^[a-zA-Z0-9._ -]{4,20}"));
|
||||
QRegularExpressionValidator nickname;
|
||||
|
||||
/// ipv4 address only
|
||||
// TODO remove this when we support hostnames in direct connect
|
||||
/// ipv4 / ipv6 / hostnames
|
||||
QRegularExpression ip_regex = QRegularExpression(QStringLiteral(
|
||||
"(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|"
|
||||
"2[0-4][0-9]|25[0-5])"));
|
||||
"^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$|"
|
||||
"^([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$|"
|
||||
"^([a-zA-Z0-9]+(-[a-zA-Z0-9]+)*\\.)+[a-zA-Z]{2,}$"));
|
||||
QRegularExpressionValidator ip;
|
||||
|
||||
/// port must be between 0 and 65535
|
||||
|
|
Loading…
Reference in a new issue