Class: ImFontGlyphRangesBuilder

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

Instance Method Summary collapse

Instance Method Details

#AddChar(c) ⇒ Object



3164
3165
3166
# File 'lib/imgui.rb', line 3164

def AddChar(c)
  ImGui::ImFontGlyphRangesBuilder_AddChar(self, c)
end

#AddRanges(ranges) ⇒ Object



3172
3173
3174
# File 'lib/imgui.rb', line 3172

def AddRanges(ranges)
  ImGui::ImFontGlyphRangesBuilder_AddRanges(self, ranges)
end

#AddText(text, text_end = nil) ⇒ Object



3168
3169
3170
# File 'lib/imgui.rb', line 3168

def AddText(text, text_end = nil)
  ImGui::ImFontGlyphRangesBuilder_AddText(self, text, text_end)
end

#BuildRanges(out_ranges) ⇒ Object



3176
3177
3178
# File 'lib/imgui.rb', line 3176

def BuildRanges(out_ranges)
  ImGui::ImFontGlyphRangesBuilder_BuildRanges(self, out_ranges)
end

#ClearObject



3152
3153
3154
# File 'lib/imgui.rb', line 3152

def Clear()
  ImGui::ImFontGlyphRangesBuilder_Clear(self)
end

#GetBit(n) ⇒ Object



3156
3157
3158
# File 'lib/imgui.rb', line 3156

def GetBit(n)
  ImGui::ImFontGlyphRangesBuilder_GetBit(self, n)
end

#SetBit(n) ⇒ Object



3160
3161
3162
# File 'lib/imgui.rb', line 3160

def SetBit(n)
  ImGui::ImFontGlyphRangesBuilder_SetBit(self, n)
end