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



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

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

#EndObject



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

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

#IncludeItemByIndex(item_index) ⇒ Object



2883
2884
2885
# File 'lib/imgui.rb', line 2883

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

#IncludeItemsByIndex(item_begin, item_end) ⇒ Object



2887
2888
2889
# File 'lib/imgui.rb', line 2887

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

#SeekCursorForItem(item_index) ⇒ Object



2891
2892
2893
# File 'lib/imgui.rb', line 2891

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

#StepObject



2879
2880
2881
# File 'lib/imgui.rb', line 2879

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