Searched refs:ini_size (Results 1 - 4 of 4) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui.cpp | 9006 void ImGui::LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size) argument 9012 // For user convenience, we allow passing a non zero-terminated string (hence the ini_size parameter). 9014 if (ini_size == 0) 9015 ini_size = strlen(ini_data); 9016 char* buf = (char*)ImGui::MemAlloc(ini_size + 1); 9017 char* buf_end = buf + ini_size; 9018 memcpy(buf, ini_data, ini_size); 9019 buf[ini_size] = 0;
|
| H A D | imgui.h | 673 IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui.cpp | 9006 void ImGui::LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size) argument 9012 // For user convenience, we allow passing a non zero-terminated string (hence the ini_size parameter). 9014 if (ini_size == 0) 9015 ini_size = strlen(ini_data); 9016 char* buf = (char*)ImGui::MemAlloc(ini_size + 1); 9017 char* buf_end = buf + ini_size; 9018 memcpy(buf, ini_data, ini_size); 9019 buf[ini_size] = 0;
|
| H A D | imgui.h | 673 IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source.
|
Completed in 48 milliseconds