| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| aubinator_viewer_urb.h | 61 bool hovered; local 64 hovered = _Hovered(mouse_pos, window_hovered, alloc_tl, alloc_br); 66 1.0f, hovered ? 1.0f : 0.8f, 69 if (hovered) { 77 hovered = _Hovered(mouse_pos, window_hovered, const_tl, const_br); 79 1.0f, hovered ? 1.0f : 0.8f, 82 if (hovered) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/ |
| aubinator_viewer_urb.h | 61 bool hovered; local 64 hovered = _Hovered(mouse_pos, window_hovered, alloc_tl, alloc_br); 66 1.0f, hovered ? 1.0f : 0.8f, 69 if (hovered) { 77 hovered = _Hovered(mouse_pos, window_hovered, const_tl, const_br); 79 1.0f, hovered ? 1.0f : 0.8f, 82 if (hovered) {
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| imgui_widgets.cpp | 415 bool hovered = ItemHoverable(bb, id); local 417 // Drag source doesn't report as hovered 418 if (hovered && g.DragDropActive && g.DragDropPayload.SourceId == id && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoDisableHover)) 419 hovered = false; 425 hovered = true; 438 if (hovered && (flags & ImGuiButtonFlags_AllowItemOverlap) && (g.HoveredIdPreviousFrame != id && g.HoveredIdPreviousFrame != 0)) 439 hovered = false; 442 if (hovered) 486 // We report navigated item as hovered but we don't set g.HoveredId to not interfere with mouse. 488 hovered = true 567 bool hovered, held; local 643 bool hovered, held; local 672 bool hovered, held; local 698 bool hovered, held; local 782 bool hovered = false; local 989 bool hovered, held; local [all...] |
| imgui.cpp | 3303 // Find the window hovered by mouse: 4725 bool hovered, held; local 4726 ButtonBehavior(resize_rect, window->GetID((void*)(intptr_t)resize_grip_n), &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); 4728 if (hovered || held) 4744 if (resize_grip_n == 0 || held || hovered) 4745 resize_grip_col[resize_grip_n] = GetColorU32(held ? ImGuiCol_ResizeGripActive : hovered ? ImGuiCol_ResizeGripHovered : ImGuiCol_ResizeGrip); 4749 bool hovered, held; local 4751 ButtonBehavior(border_rect, window->GetID((void*)(intptr_t)(border_n + 4)), &hovered, &held, ImGuiButtonFlags_FlattenChildren); 4753 if ((hovered && g.HoveredIdTimer > WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER) || held) 8418 bool hovered = false, held = false local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| imgui_widgets.cpp | 415 bool hovered = ItemHoverable(bb, id); local 417 // Drag source doesn't report as hovered 418 if (hovered && g.DragDropActive && g.DragDropPayload.SourceId == id && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoDisableHover)) 419 hovered = false; 425 hovered = true; 438 if (hovered && (flags & ImGuiButtonFlags_AllowItemOverlap) && (g.HoveredIdPreviousFrame != id && g.HoveredIdPreviousFrame != 0)) 439 hovered = false; 442 if (hovered) 486 // We report navigated item as hovered but we don't set g.HoveredId to not interfere with mouse. 488 hovered = true 567 bool hovered, held; local 643 bool hovered, held; local 672 bool hovered, held; local 698 bool hovered, held; local 782 bool hovered = false; local 989 bool hovered, held; local [all...] |
| imgui.cpp | 3303 // Find the window hovered by mouse: 4725 bool hovered, held; local 4726 ButtonBehavior(resize_rect, window->GetID((void*)(intptr_t)resize_grip_n), &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); 4728 if (hovered || held) 4744 if (resize_grip_n == 0 || held || hovered) 4745 resize_grip_col[resize_grip_n] = GetColorU32(held ? ImGuiCol_ResizeGripActive : hovered ? ImGuiCol_ResizeGripHovered : ImGuiCol_ResizeGrip); 4749 bool hovered, held; local 4751 ButtonBehavior(border_rect, window->GetID((void*)(intptr_t)(border_n + 4)), &hovered, &held, ImGuiButtonFlags_FlattenChildren); 4753 if ((hovered && g.HoveredIdTimer > WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER) || held) 8418 bool hovered = false, held = false local [all...] |
| imgui_demo.cpp | 128 // Helper to display a little (?) mark which shows a tooltip when hovered. 1435 if (ImGui::TreeNode("Querying Status (Active/Focused/Hovered etc.)")) 1532 // Calling IsItemHovered() after begin returns the hovered status of the title bar. 1535 ImGui::Checkbox("Hovered/Active tests after Begin() for title bar testing", &test_window); 1538 ImGui::Begin("Title bar Hovered/Active tests", &test_window); 1545 "IsItemHovered() after begin = %d (== is title bar hovered)\n" 1625 // See "Widgets" -> "Querying Status (Active/Focused/Hovered etc.)" section for more details about this. 1737 //if (ImGui::IsItemHovered()) ImGui::SetTooltip("ListBox %d hovered", i); 1855 ImGui::SetTooltip("First group hovered"); 2294 ImGui::Text("Hovered"); ImGui::NextColumn() 2305 bool hovered = ImGui::IsItemHovered(); local [all...] |