Searched refs:ImGuiPayload (Results 1 - 9 of 9) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h19 // Misc data structures (ImGuiInputTextCallbackData, ImGuiSizeCallbackData, ImGuiPayload)
110 struct ImGuiPayload; // User data payload for drag and drop operations
588 IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.
590 IMGUI_API const ImGuiPayload* GetDragDropPayload(); // peek directly into the current payload from anywhere. may return NULL. use ImGuiPayload::IsDataType() to test for the payload type.
1459 struct ImGuiPayload struct
1473 ImGuiPayload() { Clear(); } function in struct:ImGuiPayload
H A Dimgui_demo.cpp1108 if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F))
1110 if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F))
1405 if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload("DND_DEMO_CELL"))
H A Dimgui_internal.h873 ImGuiPayload DragDropPayload;
H A Dimgui.cpp8557 ImGuiPayload& payload = g.DragDropPayload;
8607 ImGuiPayload& payload = g.DragDropPayload;
8705 const ImGuiPayload* ImGui::AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags)
8709 ImGuiPayload& payload = g.DragDropPayload;
8748 const ImGuiPayload* ImGui::GetDragDropPayload()
H A Dimgui_widgets.cpp4013 if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F))
4018 if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F))
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h19 // Misc data structures (ImGuiInputTextCallbackData, ImGuiSizeCallbackData, ImGuiPayload)
110 struct ImGuiPayload; // User data payload for drag and drop operations
588 IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released.
590 IMGUI_API const ImGuiPayload* GetDragDropPayload(); // peek directly into the current payload from anywhere. may return NULL. use ImGuiPayload::IsDataType() to test for the payload type.
1459 struct ImGuiPayload struct
1473 ImGuiPayload() { Clear(); } function in struct:ImGuiPayload
H A Dimgui_internal.h873 ImGuiPayload DragDropPayload;
H A Dimgui.cpp8557 ImGuiPayload& payload = g.DragDropPayload;
8607 ImGuiPayload& payload = g.DragDropPayload;
8705 const ImGuiPayload* ImGui::AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags)
8709 ImGuiPayload& payload = g.DragDropPayload;
8748 const ImGuiPayload* ImGui::GetDragDropPayload()
H A Dimgui_widgets.cpp4013 if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F))
4018 if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F))

Completed in 108 milliseconds