4 bytes-per-pixel
| 2766 | IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel |
| 2767 | IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel |
| 2768 | bool IsBuilt() const { return Fonts.Size > 0 && TexReady; } // Bit ambiguous: used to detect when user didn't build texture but effectively we should check TexID != 0 except that would be backend dependent... |
| 2769 | void SetTexID(ImTextureID id) { TexID = id; } |
| 2770 | |
| 2771 | //------------------------------------------- |
no outgoing calls
no test coverage detected