This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of radio | |
04-27 07:21:27.727 1229 1229 E TelephonyManager: IMSI error: Subscriber Info is null | |
04-27 07:21:34.052 1229 1946 E PHONE : ServiceState.getRadioTechnology() DEPRECATED will be removed ******* | |
04-27 07:21:34.060 1229 1946 E PHONE : ServiceState.getRadioTechnology() DEPRECATED will be removed ******* | |
04-27 07:21:34.118 1229 1946 E PHONE : ServiceState.getRadioTechnology() DEPRECATED will be removed ******* | |
04-27 07:21:34.148 1229 1778 E PHONE : ServiceState.getRadioTechnology() DEPRECATED will be removed ******* | |
04-27 07:21:34.741 1229 1946 E PHONE : ServiceState.getRadioTechnology() DEPRECATED will be removed ******* | |
--------- beginning of system | |
04-27 07:21:35.159 1229 1570 E NetworkPolicy: Missing subscriberId for subId 1 | |
04-27 07:21:35.166 1229 1570 E NetworkPolicy: Missing subscriberId for subId 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of system | |
04-27 07:21:27.323 875 954 I storaged: storaged: Start | |
04-27 07:21:27.337 1229 1229 I chatty : uid=1000(system) expire 313 lines | |
04-27 07:21:27.395 1229 1310 I chatty : uid=1000(system) expire 2 lines | |
04-27 07:21:27.453 1229 1563 I chatty : uid=1000(system) expire 2 lines | |
04-27 07:21:27.456 1229 1323 I chatty : uid=1000(system) expire 15 lines | |
04-27 07:21:27.576 1229 1565 I chatty : uid=1000(system) expire 8 lines | |
04-27 07:21:27.582 1229 1309 I chatty : uid=1000(system) expire 4 lines | |
04-27 07:21:27.611 1229 1538 I chatty : uid=1000(system) expire 4 lines | |
04-27 07:21:27.627 438 1566 I vold : [libfs_mgr]dt_fstab: Skip disabled entry for partition vendor |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of system | |
04-18 09:58:23.499 881 987 I storaged: storaged: Start | |
04-18 09:58:23.512 1158 1245 I chatty : uid=1000(system) expire 5 lines | |
04-18 09:58:23.528 1158 1158 I chatty : uid=1000(system) expire 347 lines | |
04-18 09:58:23.547 1158 1551 I chatty : uid=1000(system) expire 1 line | |
04-18 09:58:23.658 1158 1211 I chatty : uid=1000(system) expire 2 lines | |
04-18 09:58:23.719 1158 1564 I chatty : uid=1000(system) expire 2 lines | |
04-18 09:58:23.721 1158 1226 I chatty : uid=1000(system) expire 15 lines | |
04-18 09:58:23.831 1158 1566 I chatty : uid=1000(system) expire 8 lines | |
04-18 09:58:23.841 1158 1210 I chatty : uid=1000(system) expire 4 lines |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of crash | |
04-16 22:39:06.811 2242 2242 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 2242 (init), pid 2242 (init) | |
04-16 22:39:06.956 2242 2242 F libc : crash_dump helper failed to exec | |
04-16 22:39:33.065 4265 4265 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 4265 (init), pid 4265 (init) | |
04-16 22:39:33.171 4265 4265 F libc : crash_dump helper failed to exec | |
--------- beginning of system | |
04-17 04:22:47.455 582 582 E android.hardware.wifi@1.0-service: Failed to open directory: Permission denied | |
04-17 04:22:47.455 582 582 E android.hardware.wifi@1.0-service: Error occurred while deleting old tombstone files | |
04-17 04:22:47.455 582 582 E android.hardware.wifi@1.0-service: Error writing files to flash | |
04-17 04:22:52.102 582 582 E android.hardware.wifi@1.0-service: Failed to open directory: Permission denied |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Renderer::Framebuffer Renderer::ResizeFramebuffer(Framebuffer& framebuffer, NSuint width, NSuint height) | |
{ | |
// Resize the window | |
_width = width; | |
_height = height; | |
glViewport(0, 0, _width, _height); | |
if (framebuffer.textureIDs) | |
glDeleteTextures(framebuffer.textureCount, framebuffer.textureIDs); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Renderer.h> | |
#define WIDTH 800 | |
#define HEIGHT 600 | |
#include "imgui.h" | |
#include "imgui_impl_glfw.h" | |
#include "imgui_impl_opengl3.h" | |
#define STB_IMAGE_IMPLEMENTATION |