/third_party/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 406 IM_ASSERT(IM_OFFSETOF(ImDrawCmd, ClipRect) == 0); in _ResetForNewFrame() 407 IM_ASSERT(IM_OFFSETOF(ImDrawCmd, TextureId) == sizeof(ImVec4)); in _ResetForNewFrame() 408 IM_ASSERT(IM_OFFSETOF(ImDrawCmd, VtxOffset) == sizeof(ImVec4) + sizeof(ImTextureID)); in _ResetForNewFrame() 422 CmdBuffer.push_back(ImDrawCmd()); in _ResetForNewFrame() 453 ImDrawCmd draw_cmd; in AddDrawCmd() 469 ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; in _PopUnusedDrawCmd() 476 ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; in AddCallback() 490 #define ImDrawCmd_HeaderSize (IM_OFFSETOF(ImDrawCmd, VtxOffset) + sizeof(uns… 497 ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; in _TryMergeDrawCmds() 498 ImDrawCmd* prev_cmd = curr_cmd - 1; in _TryMergeDrawCmds() [all …]
|
D | imgui.h | 138 struct ImDrawCmd; // A single draw command within a parent ImDrawList (generally … 2273 typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); 2287 struct ImDrawCmd struct 2297 ImDrawCmd() { memset(this, 0, sizeof(*this)); } // Also ensure our padding fields are zeroed in ImDrawCmd() argument 2330 ImVector<ImDrawCmd> _CmdBuffer; 2395 …ImVector<ImDrawCmd> CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw cal…
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_metal.mm | 16 // 2021-05-19: Metal: Replaced direct access to ImDrawCmd::TextureId with a call to ImDrawCmd::Get… 86 …io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset; // We can honor the ImDrawCmd::VtxOffs… 495 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i];
|
D | imgui_impl_sdlrenderer.cpp | 145 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplSDLRenderer_RenderDrawData()
|
D | imgui_impl_opengl2.cpp | 191 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplOpenGL2_RenderDrawData()
|
D | imgui_impl_marmalade.cpp | 77 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_Marmalade_RenderDrawData()
|
D | imgui_impl_allegro5.cpp | 162 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplAllegro5_RenderDrawData()
|
D | imgui_impl_dx9.cpp | 239 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplDX9_RenderDrawData()
|
D | imgui_impl_opengl3.cpp | 433 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplOpenGL3_RenderDrawData()
|
D | imgui_impl_dx10.cpp | 244 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplDX10_RenderDrawData()
|
D | imgui_impl_wgpu.cpp | 419 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplWGPU_RenderDrawData()
|
/third_party/flutter/skia/third_party/externals/imgui/examples/ |
D | imgui_impl_opengl2.cpp | 131 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplOpenGL2_RenderDrawData()
|
D | imgui_impl_marmalade.cpp | 72 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_Marmalade_RenderDrawData()
|
D | imgui_impl_dx9.cpp | 173 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplDX9_RenderDrawData()
|
D | imgui_impl_allegro5.cpp | 129 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplAllegro5_RenderDrawData()
|
D | imgui_impl_opengl3.cpp | 237 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplOpenGL3_RenderDrawData()
|
D | imgui_impl_dx10.cpp | 208 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplDX10_RenderDrawData()
|
D | imgui_impl_dx11.cpp | 213 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplDX11_RenderDrawData()
|
/third_party/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 414 ImDrawCmd draw_cmd; in AddDrawCmd() 424 ImDrawCmd* current_cmd = CmdBuffer.Size ? &CmdBuffer.back() : NULL; in AddCallback() 442 ImDrawCmd* curr_cmd = CmdBuffer.Size > 0 ? &CmdBuffer.Data[CmdBuffer.Size-1] : NULL; in UpdateClipRect() 450 ImDrawCmd* prev_cmd = CmdBuffer.Size > 1 ? curr_cmd - 1 : NULL; in UpdateClipRect() 461 ImDrawCmd* curr_cmd = CmdBuffer.Size ? &CmdBuffer.back() : NULL; in UpdateTextureID() 469 ImDrawCmd* prev_cmd = CmdBuffer.Size > 1 ? curr_cmd - 1 : NULL; in UpdateTextureID() 548 ImDrawCmd draw_cmd; in ChannelsSplit() 578 ImDrawCmd* cmd_write = CmdBuffer.Data + CmdBuffer.Size - new_cmd_buffer_count; in ChannelsMerge() 583 …= ch.CmdBuffer.Size) { memcpy(cmd_write, ch.CmdBuffer.Data, sz * sizeof(ImDrawCmd)); cmd_write += … in ChannelsMerge() 605 ImDrawCmd& draw_cmd = CmdBuffer.Data[CmdBuffer.Size-1]; in PrimReserve() [all …]
|
D | imgui.h | 94 struct ImDrawCmd; // A single draw command within a parent ImDrawList (generally … 1728 typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); 1731 struct ImDrawCmd struct 1739 …ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId =… in ImDrawCmd() argument 1767 ImVector<ImDrawCmd> CmdBuffer; 1800 …ImVector<ImDrawCmd> CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw cal…
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 412 ImDrawCmd draw_cmd; in AddDrawCmd() 422 ImDrawCmd* current_cmd = CmdBuffer.Size ? &CmdBuffer.back() : NULL; in AddCallback() 440 ImDrawCmd* curr_cmd = CmdBuffer.Size > 0 ? &CmdBuffer.Data[CmdBuffer.Size-1] : NULL; in UpdateClipRect() 448 ImDrawCmd* prev_cmd = CmdBuffer.Size > 1 ? curr_cmd - 1 : NULL; in UpdateClipRect() 459 ImDrawCmd* curr_cmd = CmdBuffer.Size ? &CmdBuffer.back() : NULL; in UpdateTextureID() 467 ImDrawCmd* prev_cmd = CmdBuffer.Size > 1 ? curr_cmd - 1 : NULL; in UpdateTextureID() 546 ImDrawCmd draw_cmd; in ChannelsSplit() 576 ImDrawCmd* cmd_write = CmdBuffer.Data + CmdBuffer.Size - new_cmd_buffer_count; in ChannelsMerge() 581 …= ch.CmdBuffer.Size) { memcpy(cmd_write, ch.CmdBuffer.Data, sz * sizeof(ImDrawCmd)); cmd_write += … in ChannelsMerge() 603 ImDrawCmd& draw_cmd = CmdBuffer.Data[CmdBuffer.Size-1]; in PrimReserve() [all …]
|
D | imgui.h | 91 struct ImDrawCmd; // A single draw command within a parent ImDrawList (generally … 1720 typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); 1723 struct ImDrawCmd struct 1731 …ImDrawCmd() { ElemCount = 0; ClipRect.x = ClipRect.y = ClipRect.z = ClipRect.w = 0.0f; TextureId =… in ImDrawCmd() argument 1759 ImVector<ImDrawCmd> CmdBuffer; 1792 …ImVector<ImDrawCmd> CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw cal…
|
/third_party/flutter/skia/tools/viewer/ |
D | ImGuiLayer.cpp | 147 const ImDrawCmd* drawCmd = &drawList->CmdBuffer[j]; in onPaint()
|
/third_party/skia/tools/viewer/ |
D | ImGuiLayer.cpp | 181 const ImDrawCmd* drawCmd = &drawList->CmdBuffer[j]; in onPaint()
|
/third_party/mesa3d/src/intel/tools/imgui/ |
D | imgui_impl_opengl3.cpp | 188 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplOpenGL3_RenderDrawData()
|