Class: ImGuiListClipper

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/imgui.rb

Instance Method Summary collapse

Instance Method Details

#Begin(items_count, items_height = -1.0)) ⇒ Object



2855
2856
2857
# File 'lib/imgui.rb', line 2855

def Begin(items_count, items_height = -1.0)
  ImGui::ImGuiListClipper_Begin(self, items_count, items_height)
end

#EndObject



2859
2860
2861
# File 'lib/imgui.rb', line 2859

def End()
  ImGui::ImGuiListClipper_End(self)
end

#IncludeItemByIndex(item_index) ⇒ Object



2867
2868
2869
# File 'lib/imgui.rb', line 2867

def IncludeItemByIndex(item_index)
  ImGui::ImGuiListClipper_IncludeItemByIndex(self, item_index)
end

#IncludeItemsByIndex(item_begin, item_end) ⇒ Object



2871
2872
2873
# File 'lib/imgui.rb', line 2871

def IncludeItemsByIndex(item_begin, item_end)
  ImGui::ImGuiListClipper_IncludeItemsByIndex(self, item_begin, item_end)
end

#SeekCursorForItem(item_index) ⇒ Object



2875
2876
2877
# File 'lib/imgui.rb', line 2875

def SeekCursorForItem(item_index)
  ImGui::ImGuiListClipper_SeekCursorForItem(self, item_index)
end

#StepObject



2863
2864
2865
# File 'lib/imgui.rb', line 2863

def Step()
  ImGui::ImGuiListClipper_Step(self)
end