Searched refs:idx_count (Results 1 – 8 of 8) sorted by relevance
/third_party/gstreamer/gstplugins_good/gst/avi/ |
D | gstavimux.h | 186 gint idx_index, idx_count; member
|
D | gstavimux.c | 1674 if (avimux->idx_index == avimux->idx_count) { in gst_avi_mux_add_index() 1675 avimux->idx_count += 256; in gst_avi_mux_add_index() 1678 avimux->idx_count * sizeof (gst_riff_index_entry)); in gst_avi_mux_add_index() 1784 avimux->idx_count = 0; in gst_avi_mux_bigfile() 1838 avimux->idx_count = 0; in gst_avi_mux_start_file()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 626 void ImDrawList::PrimReserve(int idx_count, int vtx_count) in PrimReserve() argument 629 IM_ASSERT_PARANOID(idx_count >= 0 && vtx_count >= 0); in PrimReserve() 640 draw_cmd->ElemCount += idx_count; in PrimReserve() 647 IdxBuffer.resize(idx_buffer_old_size + idx_count); in PrimReserve() 652 void ImDrawList::PrimUnreserve(int idx_count, int vtx_count) in PrimUnreserve() argument 654 IM_ASSERT_PARANOID(idx_count >= 0 && vtx_count >= 0); in PrimUnreserve() 657 draw_cmd->ElemCount -= idx_count; in PrimUnreserve() 659 IdxBuffer.shrink(IdxBuffer.Size - idx_count); in PrimUnreserve() 745 const int idx_count = use_texture ? (count * 6) : (thick_line ? count * 18 : count * 12); in AddPolyline() local 747 PrimReserve(idx_count, vtx_count); in AddPolyline() [all …]
|
D | imgui.h | 2488 IMGUI_API void PrimReserve(int idx_count, int vtx_count); 2489 IMGUI_API void PrimUnreserve(int idx_count, int vtx_count);
|
/third_party/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 603 void ImDrawList::PrimReserve(int idx_count, int vtx_count) in PrimReserve() argument 606 draw_cmd.ElemCount += idx_count; in PrimReserve() 613 IdxBuffer.resize(idx_buffer_old_size + idx_count); in PrimReserve() 687 const int idx_count = thick_line ? count*18 : count*12; in AddPolyline() local 689 PrimReserve(idx_count, vtx_count); in AddPolyline() 826 const int idx_count = count*6; in AddPolyline() local 828 PrimReserve(idx_count, vtx_count); in AddPolyline() 869 const int idx_count = (points_count-2)*3 + points_count*6; in AddConvexPolyFilled() local 871 PrimReserve(idx_count, vtx_count); in AddConvexPolyFilled() 921 const int idx_count = (points_count-2)*3; in AddConvexPolyFilled() local [all …]
|
D | imgui.h | 1876 IMGUI_API void PrimReserve(int idx_count, int vtx_count);
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 601 void ImDrawList::PrimReserve(int idx_count, int vtx_count) in PrimReserve() argument 604 draw_cmd.ElemCount += idx_count; in PrimReserve() 611 IdxBuffer.resize(idx_buffer_old_size + idx_count); in PrimReserve() 685 const int idx_count = thick_line ? count*18 : count*12; in AddPolyline() local 687 PrimReserve(idx_count, vtx_count); in AddPolyline() 824 const int idx_count = count*6; in AddPolyline() local 826 PrimReserve(idx_count, vtx_count); in AddPolyline() 867 const int idx_count = (points_count-2)*3 + points_count*6; in AddConvexPolyFilled() local 869 PrimReserve(idx_count, vtx_count); in AddConvexPolyFilled() 919 const int idx_count = (points_count-2)*3; in AddConvexPolyFilled() local [all …]
|
D | imgui.h | 1868 IMGUI_API void PrimReserve(int idx_count, int vtx_count);
|