Home
last modified time | relevance | path

Searched refs:idx_count (Results 1 – 8 of 8) sorted by relevance

/third_party/gstreamer/gstplugins_good/gst/avi/
Dgstavimux.h186 gint idx_index, idx_count; member
Dgstavimux.c1674 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/
Dimgui_draw.cpp626 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 …]
Dimgui.h2488 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/
Dimgui_draw.cpp603 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 …]
Dimgui.h1876 IMGUI_API void PrimReserve(int idx_count, int vtx_count);
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_draw.cpp601 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 …]
Dimgui.h1868 IMGUI_API void PrimReserve(int idx_count, int vtx_count);