|
|
|
@ -160,10 +160,6 @@ public:
|
|
|
|
|
return need_fastmath_off;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool NeedsGatherSubpixelOffset() const {
|
|
|
|
|
return need_gather_subpixel_offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool HasCbufFtouBug() const {
|
|
|
|
|
return has_cbuf_ftou_bug;
|
|
|
|
|
}
|
|
|
|
@ -180,6 +176,10 @@ public:
|
|
|
|
|
return vendor_name == "ATI Technologies Inc.";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IsIntel() const {
|
|
|
|
|
return vendor_name == "Intel";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CanReportMemoryUsage() const {
|
|
|
|
|
return can_report_memory;
|
|
|
|
|
}
|
|
|
|
@ -229,7 +229,6 @@ private:
|
|
|
|
|
bool has_draw_texture{};
|
|
|
|
|
bool warp_size_potentially_larger_than_guest{};
|
|
|
|
|
bool need_fastmath_off{};
|
|
|
|
|
bool need_gather_subpixel_offset{};
|
|
|
|
|
bool has_cbuf_ftou_bug{};
|
|
|
|
|
bool has_bool_ref_bug{};
|
|
|
|
|
bool can_report_memory{};
|
|
|
|
|