Lines Matching defs:dst
174 void ImGui::StyleColorsDark(ImGuiStyle* dst)
176 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle();
229 void ImGui::StyleColorsClassic(ImGuiStyle* dst)
231 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle();
285 void ImGui::StyleColorsLight(ImGuiStyle* dst)
287 ImGuiStyle* style = dst ? dst : &ImGui::GetStyle();
400 ImDrawList* dst = IM_NEW(ImDrawList(NULL));
401 dst->CmdBuffer = CmdBuffer;
402 dst->IdxBuffer = IdxBuffer;
403 dst->VtxBuffer = VtxBuffer;
404 dst->Flags = Flags;
405 return dst;
1532 unsigned int* dst = TexPixelsRGBA32;
1534 *dst++ = IM_COL32(255, 255, 255, (unsigned int)(*src++));
1577 static void Decode85(const unsigned char* src, unsigned char* dst)
1582 dst[0] = ((tmp >> 0) & 0xFF); dst[1] = ((tmp >> 8) & 0xFF); dst[2] = ((tmp >> 16) & 0xFF); dst[3] = ((tmp >> 24) & 0xFF); // We can't assume little-endianness.
1584 dst += 4;
2507 void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst)
2512 if (dst < index_size && IndexLookup.Data[dst] == (ImWchar)-1 && !overwrite_dst) // 'dst' already exists
2514 if (src >= index_size && dst >= index_size) // both 'dst' and 'src' don't exist -> no-op
2517 GrowIndex(dst + 1);
2518 IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImWchar)-1;
2519 IndexAdvanceX[dst] = (src < index_size) ? IndexAdvanceX.Data[src] : 1.0f;