Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Log

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 4

Sat Apr 29 15:23:37 2023

Unknown platform.
Ren'Py 7.5.3.22090809

Bootstrap to the start of init.init took 0.00s


Bootstrap to the start of init.init took 0.00s
Manufacturer Xiaomi model MI CC 9e
Screen diagonal is 5.15003223594 inches.
Early init took 0.16s
Early init took 0.16s
Android search paths:
/storage/emulated/0/Android/data/my.cute.roommate.two/files/../../../../Documents/
Wills747/my.cute.roommate.two/game /data/data/my.cute.roommate.two/files/game
Loader init took 0.08s
Loader init took 0.08s
Loading error handling took 0.16s
Loading error handling took 0.16s
Loading script took 3.66s
Loading script took 3.66s
Saving to /storage/emulated/0/Android/data/my.cute.roommate.two/files/../../../../
Documents/Wills747/my.cute.roommate.two
Loading save slot metadata. took 0.24s
Loading save slot metadata. took 0.24s
Loading persistent took 0.01s
Loading persistent took 0.01s
Faled to initialize steam: OSError('dlopen failed: library
"/data/user/0/my.cute.roommate.two/files/libsteam_api.so" not found',)
Set script version to: (7, 5, 3)
- Init at _script/suggest_better_translation/suggest_better_translation.rpyc:1
took 0.67129 s.
- Init at _script/define/02_images.rpyc:1 took 3.62173 s.
Running init code took 5.06s
Running init code took 5.06s
Loading analysis data took 0.19s
Loading analysis data took 0.19s
Analyze and compile ATL took 0.11s
Analyze and compile ATL took 0.11s
Index archives took 0.00s
Index archives took 0.00s
Dump and make backups. took 0.00s
Dump and make backups. took 0.00s
Cleaning cache took 0.00s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.52s
Initial gc. took 0.52s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Creating interface object took 0.00s
Cleaning stores took 0.00s
Cleaning stores took 0.00s
Init translation took 0.61s
Init translation took 0.61s
Build styles took 0.02s
Build styles took 0.02s
Load screen analysis took 0.23s
Load screen analysis took 0.23s
Analyze screens took 0.01s
Analyze screens took 0.01s
Save screen analysis took 0.00s
Save screen analysis took 0.00s
Prepare screens took 0.73s
Prepare screens took 0.73s
Save pyanalysis. took 0.00s
Save pyanalysis. took 0.00s
Save bytecode. took 0.00s
Save bytecode. took 0.00s
Running _start took 0.00s
Running _start took 0.00s
Interface start took 0.92s
Interface start took 0.92s

Initializing gles2 renderer:


primary display bounds: (0, 0, 1507, 667)
swap interval: 1 frames
Fullscreen mode.
Vendor: 'Qualcomm'
Renderer: 'Adreno (TM) 610'
Version: 'OpenGL ES 3.2 V@415.0 (GIT@c46ab63503, I7328526fed, 1590725326)
(Date:05/29/20)'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1507, 720) drawable=(1507, 720)
Could not open 'cache/shaders.txt':
Maximum texture size: 4096x4096
vertex renpy.ftl ---------------------------------------------------------------
#version 100
attribute vec2 a_tex_coord;
attribute vec4 a_position;
varying vec2 v_tex_coord;

void main() {

v_tex_coord = a_tex_coord;
gl_Position = a_position;
}

--------------------------------------------------------------------------------
fragment renpy.ftl -------------------------------------------------------------
#version 100
precision mediump float;
uniform sampler2D tex0;
varying vec2 v_tex_coord;

void main() {

gl_FragColor = texture2D(tex0, v_tex_coord.xy, -1.0);


}

--------------------------------------------------------------------------------
Total time until interface ready: 13.2146568298s
vertex renpy.geometry, renpy.solid ---------------------------------------------
#version 100
attribute vec4 a_position;
uniform mat4 u_transform;

void main() {
gl_Position = u_transform * a_position;
}

--------------------------------------------------------------------------------
fragment renpy.geometry, renpy.solid -------------------------------------------
#version 100
precision mediump float;
uniform vec4 u_renpy_solid_color;

void main() {

gl_FragColor = u_renpy_solid_color;
}

--------------------------------------------------------------------------------
vertex renpy.dissolve, renpy.geometry ------------------------------------------
#version 100
attribute vec2 a_tex_coord;
attribute vec4 a_position;
uniform mat4 u_transform;
varying vec2 v_tex_coord;

void main() {

gl_Position = u_transform * a_position;

v_tex_coord = a_tex_coord;
}

--------------------------------------------------------------------------------
fragment renpy.dissolve, renpy.geometry ----------------------------------------
#version 100
precision mediump float;
uniform float u_lod_bias;
uniform float u_renpy_dissolve;
uniform sampler2D tex0;
uniform sampler2D tex1;
varying vec2 v_tex_coord;

void main() {

vec4 color0 = texture2D(tex0, v_tex_coord.st, u_lod_bias);


vec4 color1 = texture2D(tex1, v_tex_coord.st, u_lod_bias);

gl_FragColor = mix(color0, color1, u_renpy_dissolve);


}

--------------------------------------------------------------------------------
Hid presplash.
vertex renpy.geometry, renpy.texture -------------------------------------------
#version 100
attribute vec2 a_tex_coord;
attribute vec4 a_position;
uniform mat4 u_transform;
varying vec2 v_tex_coord;

void main() {
gl_Position = u_transform * a_position;

v_tex_coord = a_tex_coord;
}

--------------------------------------------------------------------------------
fragment renpy.geometry, renpy.texture -----------------------------------------
#version 100
precision mediump float;
uniform float u_lod_bias;
uniform sampler2D tex0;
varying vec2 v_tex_coord;

void main() {

gl_FragColor = texture2D(tex0, v_tex_coord.xy, u_lod_bias);


}

--------------------------------------------------------------------------------
vertex renpy.alpha, renpy.geometry, renpy.texture ------------------------------
#version 100
attribute vec2 a_tex_coord;
attribute vec4 a_position;
uniform mat4 u_transform;
varying vec2 v_tex_coord;

void main() {

gl_Position = u_transform * a_position;

v_tex_coord = a_tex_coord;
}

--------------------------------------------------------------------------------
fragment renpy.alpha, renpy.geometry, renpy.texture ----------------------------
#version 100
precision mediump float;
uniform float u_lod_bias;
uniform float u_renpy_alpha;
uniform float u_renpy_over;
uniform sampler2D tex0;
varying vec2 v_tex_coord;

void main() {

gl_FragColor = texture2D(tex0, v_tex_coord.xy, u_lod_bias);

gl_FragColor = gl_FragColor * vec4(u_renpy_alpha, u_renpy_alpha,


u_renpy_alpha, u_renpy_alpha * u_renpy_over);
}

--------------------------------------------------------------------------------
Places_loaded

You might also like

  • 666
    666
    Document9 pages
    666
    oapt710
    No ratings yet
  • Log
    Log
    Document6 pages
    Log
    aurelliojabbar2009
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Roshan Singh
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    nobarak803
    No ratings yet
  • Fam Business
    Fam Business
    Document3 pages
    Fam Business
    stevezakalia28
    No ratings yet
  • Log
    Log
    Document4 pages
    Log
    elkenggemar
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    yozurufu10
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    arwandafrizzy
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Tapu Hassan
    No ratings yet
  • Log
    Log
    Document7 pages
    Log
    عباس العراب
    No ratings yet
  • log
    log
    Document3 pages
    log
    vishnupavix47
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    nmairamonserrath
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Giovanni XD
    No ratings yet
  • The Goodnight Kiss
    The Goodnight Kiss
    Document6 pages
    The Goodnight Kiss
    Ritesh Rajpurohit
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    madiregards
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    castilhoferrari
    No ratings yet
  • Log Hugugugy
    Log Hugugugy
    Document3 pages
    Log Hugugugy
    V
    No ratings yet
  • Logdddddd
    Logdddddd
    Document4 pages
    Logdddddd
    santuy Tuy
    No ratings yet
  • Log
    Log
    Document4 pages
    Log
    taryckmiguel12
    No ratings yet
  • Log
    Log
    Document2 pages
    Log
    aironoca
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    hasanaliacm
    No ratings yet
  • Log
    Log
    Document2 pages
    Log
    narutoeckel
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    pedrovitordavitoria
    No ratings yet
  • log
    log
    Document3 pages
    log
    Anibal Saez
    No ratings yet
  • Log
    Log
    Document2 pages
    Log
    insiedead8
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    kiLler yacine Đz
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Dixer Pubg
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    LOWHHÃ
    No ratings yet
  • log
    log
    Document3 pages
    log
    accfreesh
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    elkenggemar
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    earthostorba
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Yuri Henrry
    No ratings yet
  • Log
    Log
    Document2 pages
    Log
    yengcity12
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    thiagomiranda2710
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    who534154
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    cesar.amayaa2020
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Kings Omega
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    nandaarilgunawan24
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    harmanfloen
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Pedro700
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    asimzx999
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    yash patel
    No ratings yet
  • I Like Billzard
    I Like Billzard
    Document3 pages
    I Like Billzard
    Insuke
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Giovanni XD
    No ratings yet
  • S Docs
    S Docs
    Document2 pages
    S Docs
    SHAHID αճճαs ɓɦαƭƭเ
    No ratings yet
  • Log
    Log
    Document4 pages
    Log
    moresvillain
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Oscar Delgado Segura
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    javiermp260604
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    alejandromendieta0000
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    zesantos200823
    No ratings yet
  • Log
    Log
    Document4 pages
    Log
    Dukon Kon
    No ratings yet
  • Log
    Log
    Document8 pages
    Log
    joelobedreyes09
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Nhật Hoàng
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    tahaaksan41
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Joseph arseni Tiburcio yopla
    No ratings yet
  • Logk
    Logk
    Document3 pages
    Logk
    sandritadelvall
    No ratings yet
  • Log
    Log
    Document2 pages
    Log
    gustavoandress341
    No ratings yet
  • Log
    Log
    Document3 pages
    Log
    Luka Mkd
    No ratings yet
  • Log
    Log
    Document2 pages
    Log
    tagiyevhsn512
    No ratings yet
  • Neo Geo Architecture: Architecture of Consoles: A Practical Analysis, #23
    Neo Geo Architecture: Architecture of Consoles: A Practical Analysis, #23
    From Everand
    Neo Geo Architecture: Architecture of Consoles: A Practical Analysis, #23
    No ratings yet