/third_party/astc-encoder/Source/ |
D | astcenc_ideal_endpoints_and_weights.cpp | 1137 float scale_max = 0.0f; in recompute_ideal_colors_1plane() local 1171 scale_max = astc::max(scale, scale_max); in recompute_ideal_colors_1plane() 1200 float scalediv = scale_min * (1.0f / astc::max(scale_max, 1e-10f)); in recompute_ideal_colors_1plane() 1203 vfloat4 sds = scale_dir * scale_max; in recompute_ideal_colors_1plane() 1357 float scale_max = 0.0f; in recompute_ideal_colors_2planes() local 1397 scale_max = astc::max(scale, scale_max); in recompute_ideal_colors_2planes() 1440 float scalediv = scale_min * (1.0f / astc::max(scale_max, 1e-10f)); in recompute_ideal_colors_2planes() 1443 vfloat4 sds = scale_dir * scale_max; in recompute_ideal_colors_2planes()
|
/third_party/mesa3d/src/imgui/ |
D | imgui.h | 506 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec… 507 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec… 508 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec… 509 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec…
|
D | imgui_widgets.cpp | 5249 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_si… in PlotEx() argument 5274 if (scale_min == FLT_MAX || scale_max == FLT_MAX) in PlotEx() 5286 if (scale_max == FLT_MAX) in PlotEx() 5287 scale_max = v_max; in PlotEx() 5315 const float inv_scale = (scale_min == scale_max) ? 0.0f : (1.0f / (scale_max - scale_min)); in PlotEx() 5320 …float histogram_zero_line_t = (scale_min * scale_max < 0.0f) ? (-scale_min * inv_scale) : (scale_m… in PlotEx() 5375 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_si… in PlotLines() argument 5378 …Getter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); in PlotLines() 5381 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_si… in PlotLines() argument 5383 … values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); in PlotLines() [all …]
|
D | imgui_internal.h | 1497 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_si…
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_widgets.cpp | 6420 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_si… in PlotEx() argument 6445 if (scale_min == FLT_MAX || scale_max == FLT_MAX) in PlotEx() 6459 if (scale_max == FLT_MAX) in PlotEx() 6460 scale_max = v_max; in PlotEx() 6489 const float inv_scale = (scale_min == scale_max) ? 0.0f : (1.0f / (scale_max - scale_min)); in PlotEx() 6494 …float histogram_zero_line_t = (scale_min * scale_max < 0.0f) ? (1 + scale_min * inv_scale) : (scal… in PlotEx() 6553 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_si… in PlotLines() argument 6556 …Getter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); in PlotLines() 6559 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_si… in PlotLines() argument 6561 … values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); in PlotLines() [all …]
|
D | imgui.h | 637 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec… 638 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec… 639 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec… 640 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec…
|
D | imgui_internal.h | 2724 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_si…
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 2213 - PlotLines: plot a flat line if scale_min==scale_max. (#1621)
|