@@ -1030,26 +1030,29 @@ void reshade::d3d11::runtime_impl::render_technique(technique &technique)
1030
1030
const auto impl = static_cast <technique_data *>(technique.impl );
1031
1031
effect_data &effect_data = _effect_data[technique.effect_index ];
1032
1032
1033
- // Evaluate queries
1034
- if (impl->query_in_flight )
1033
+ if (_gather_gpu_statistics)
1035
1034
{
1036
- UINT64 timestamp0, timestamp1;
1037
- D3D11_QUERY_DATA_TIMESTAMP_DISJOINT disjoint;
1038
-
1039
- if (_immediate_context->GetData (impl->timestamp_disjoint .get (), &disjoint, sizeof (disjoint), D3D11_ASYNC_GETDATA_DONOTFLUSH) == S_OK &&
1040
- _immediate_context->GetData (impl->timestamp_query_beg .get (), ×tamp0, sizeof (timestamp0), D3D11_ASYNC_GETDATA_DONOTFLUSH) == S_OK &&
1041
- _immediate_context->GetData (impl->timestamp_query_end .get (), ×tamp1, sizeof (timestamp1), D3D11_ASYNC_GETDATA_DONOTFLUSH) == S_OK)
1035
+ // Evaluate queries
1036
+ if (impl->query_in_flight )
1042
1037
{
1043
- if (!disjoint.Disjoint )
1044
- technique.average_gpu_duration .append ((timestamp1 - timestamp0) * 1'000'000'000 / disjoint.Frequency );
1045
- impl->query_in_flight = false ;
1038
+ UINT64 timestamp0, timestamp1;
1039
+ D3D11_QUERY_DATA_TIMESTAMP_DISJOINT disjoint;
1040
+
1041
+ if (_immediate_context->GetData (impl->timestamp_disjoint .get (), &disjoint, sizeof (disjoint), D3D11_ASYNC_GETDATA_DONOTFLUSH) == S_OK &&
1042
+ _immediate_context->GetData (impl->timestamp_query_beg .get (), ×tamp0, sizeof (timestamp0), D3D11_ASYNC_GETDATA_DONOTFLUSH) == S_OK &&
1043
+ _immediate_context->GetData (impl->timestamp_query_end .get (), ×tamp1, sizeof (timestamp1), D3D11_ASYNC_GETDATA_DONOTFLUSH) == S_OK)
1044
+ {
1045
+ if (!disjoint.Disjoint )
1046
+ technique.average_gpu_duration .append ((timestamp1 - timestamp0) * 1'000'000'000 / disjoint.Frequency );
1047
+ impl->query_in_flight = false ;
1048
+ }
1046
1049
}
1047
- }
1048
1050
1049
- if (!impl->query_in_flight )
1050
- {
1051
- _immediate_context->Begin (impl->timestamp_disjoint .get ());
1052
- _immediate_context->End (impl->timestamp_query_beg .get ());
1051
+ if (!impl->query_in_flight )
1052
+ {
1053
+ _immediate_context->Begin (impl->timestamp_disjoint .get ());
1054
+ _immediate_context->End (impl->timestamp_query_beg .get ());
1055
+ }
1053
1056
}
1054
1057
1055
1058
RESHADE_ADDON_EVENT (reshade_before_effects, this , _immediate_context_impl);
@@ -1213,13 +1216,16 @@ void reshade::d3d11::runtime_impl::render_technique(technique &technique)
1213
1216
1214
1217
RESHADE_ADDON_EVENT (reshade_after_effects, this , _immediate_context_impl);
1215
1218
1216
- if (!impl-> query_in_flight )
1219
+ if (_gather_gpu_statistics )
1217
1220
{
1218
- _immediate_context->End (impl->timestamp_query_end .get ());
1219
- _immediate_context->End (impl->timestamp_disjoint .get ());
1220
- }
1221
+ if (!impl->query_in_flight )
1222
+ {
1223
+ _immediate_context->End (impl->timestamp_query_end .get ());
1224
+ _immediate_context->End (impl->timestamp_disjoint .get ());
1225
+ }
1221
1226
1222
- impl->query_in_flight = true ;
1227
+ impl->query_in_flight = true ;
1228
+ }
1223
1229
}
1224
1230
1225
1231
void reshade::d3d11::runtime_impl::update_texture_bindings (const char *semantic, api::resource_view_handle api_srv)
0 commit comments