Page MenuHomePhabricator (Chris)

No OneTemporary

Authored By
Unknown
Size
217 KB
Referenced Files
None
Subscribers
None
diff --git a/Test.cpp b/Test.cpp
index a53a9e6..6c76132 100644
--- a/Test.cpp
+++ b/Test.cpp
@@ -1,772 +1,784 @@
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup") //no console window behind game window
#include<allegro5\allegro.h>
#include<allegro5\allegro_native_dialog.h>
#include<allegro5\allegro_primitives.h>
#include<allegro5\allegro_image.h>
#include <allegro5\allegro_font.h>
#include <allegro5\allegro_ttf.h>
#include <allegro5\allegro_audio.h>
#include <allegro5\allegro_acodec.h>
#include "Enemy.h"
#include "Spaceship.h"
#include "Bullet.h"
#include "Global.h"
#include "BackGround.h"
#include "Barrier.h"
using namespace std;
//GLOBALS
enum KEYS {LEFT, RIGHT, SPACE};
bool keys[5] = {false,false,false};
int gameState = 1; //initial gamestate is menu
extern int width;
extern int height;
int numAlive = NUM_COLUMNS*NUM_ROWS;
int Current_EnemyCount = NUM_COLUMNS*NUM_ROWS;
int EnemyWaveCount = 0;
int b = 0;
//METHODS
void setEnemy();
void collideEnemy(int&);
void collidePlayer();
void moveDown(int&);
void enemyShoot();
void updateBullet();
bool reachEnd();
void InitBackground(BackGround &back, float x, float y, float velx, float vely, int width, int height, int dirX, int dirY, ALLEGRO_BITMAP *image);
void UpdateBackground(BackGround &back);
void DrawBackground(BackGround &back);
void CollideBarrier();
void Reactivate_Enemies();
void EnemyReachEnd();
void BulletBarrierCollide();
void InitialiseBarriers();
-
+void Reactivate_Barriers();
//INITIALISE
Spaceship player(width/2, height*4/5);
Bullet playerBullet(player.x_pos, player.y_pos,10,true);
Bullet enemyBullet(0,0,10,false);
Enemy arrEnem[NUM_COLUMNS][NUM_ROWS]; //array of objects
Barrier Asteroid[3];
BackGround BG;
BackGround MG;
BackGround FG;
struct MovingBackground
{
float x;
float y;
float velX;
float velY;
int dirX;
int dirY;
int width;
int height;
ALLEGRO_BITMAP *BG;
};
int main(void)
{
setEnemy();
enemyBullet.isFriendly = false;
srand((unsigned)time(NULL));
//primitive variables
const int FPS = 60;
bool done = false;
bool redraw = true;
InitialiseBarriers();
MovingBackground MBG;
if(!al_init())
{
al_show_native_message_box(NULL,NULL,NULL,"Could not initialize allegro",NULL,NULL);
return -1;
}
ALLEGRO_BITMAP *bgImage = NULL;
ALLEGRO_BITMAP *mgImage = NULL;
ALLEGRO_BITMAP *fgImage = NULL;
//Allegro variables
ALLEGRO_DISPLAY *DISPLAY = NULL;
ALLEGRO_BITMAP *picHealth[7];
ALLEGRO_BITMAP *picShip = NULL;
ALLEGRO_BITMAP *picBullet = NULL;
ALLEGRO_BITMAP *picEnemy = NULL;
ALLEGRO_BITMAP *Game = NULL;
ALLEGRO_BITMAP *MENU = NULL;
ALLEGRO_EVENT_QUEUE *TestQueue = NULL;
ALLEGRO_TIMER *timer = NULL;
ALLEGRO_FONT *font25 = NULL;
ALLEGRO_FONT *font50 = NULL;
ALLEGRO_SAMPLE *blaster = NULL;
ALLEGRO_SAMPLE *explosion = NULL;
ALLEGRO_SAMPLE *music = NULL;
ALLEGRO_SAMPLE *startGame = NULL;
ALLEGRO_BITMAP *Barrier[5];
ALLEGRO_BITMAP *AsImage[3];
//Allegro Module Init
al_init_image_addon();
al_set_new_window_position(400, 200); //set pos of game window
DISPLAY = al_create_display(width, height);
al_hide_mouse_cursor(DISPLAY);
al_init_primitives_addon();
al_install_keyboard();
al_init_font_addon();
al_init_ttf_addon();
al_install_audio();
al_init_acodec_addon();
al_reserve_samples(4);
blaster = al_load_sample("XWing-Laser.ogg");
explosion = al_load_sample("Blast.ogg");
startGame = al_load_sample("xwing.ogg");
music = al_load_sample("Star_Wars.ogg");
if (!DISPLAY)
{
al_show_native_message_box(NULL, NULL, NULL, "Could not initialize display", NULL, NULL);
return -1;
}
//Load Pictures
picBullet=al_load_bitmap("Lazer.png");
picShip =al_load_bitmap("player1.png");
picEnemy = al_load_bitmap("enemy.png");
Game = al_load_bitmap("Goodpic.png");
MENU = al_load_bitmap("star_sky.png");
Barrier[0] = al_load_bitmap("B4.png");
al_convert_mask_to_alpha(Barrier[0], al_map_rgb(255, 255, 255));
Barrier[1] = al_load_bitmap("B3.png");
al_convert_mask_to_alpha(Barrier[1], al_map_rgb(255, 255, 255));
Barrier[2] = al_load_bitmap("B2.png");
al_convert_mask_to_alpha(Barrier[2], al_map_rgb(255, 255, 255));
Barrier[3] = al_load_bitmap("B1.png");
al_convert_mask_to_alpha(Barrier[3], al_map_rgb(255, 255, 255));
Barrier[4] = al_load_bitmap("B0.png");
al_convert_mask_to_alpha(Barrier[4], al_map_rgb(255, 255, 255));
AsImage[0] = Barrier[4];
AsImage[1] = Barrier[4];
AsImage[2] = Barrier[4];
picHealth[0] = al_load_bitmap("1.png");
picHealth[1] = al_load_bitmap("2.png");
picHealth[2] = al_load_bitmap("3.png");
picHealth[3] = al_load_bitmap("4.png");
picHealth[4] = al_load_bitmap("5.png");
picHealth[5] = al_load_bitmap("6.png");
picHealth[6] = al_load_bitmap("blank.png");
bgImage = al_load_bitmap("starBG.png");
mgImage = al_load_bitmap("starMG.jpg");
fgImage = al_load_bitmap("starFG.png");
for (int i = 0; i < 7; i++)
al_convert_mask_to_alpha(picHealth[i], al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(picShip,al_map_rgb(0,0,0));
al_convert_mask_to_alpha(picEnemy, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(picBullet, al_map_rgb(0, 0, 0));
al_convert_mask_to_alpha(mgImage, al_map_rgb(0, 0, 0));
InitBackground(BG, 0, 0, 1, 0, 800, 600, -1, 1, bgImage);
InitBackground(MG, 0, 0, 3, 0, 2000, 768, -1, 1, mgImage);
InitBackground(FG, 0, 0, 5, 0, 800, 600, -1, 1, fgImage);
al_set_display_icon(DISPLAY, picShip);
timer=al_create_timer(1.0/FPS);
TestQueue= al_create_event_queue();
al_register_event_source(TestQueue,al_get_keyboard_event_source());
al_register_event_source(TestQueue,al_get_display_event_source(DISPLAY));
al_register_event_source(TestQueue,al_get_timer_event_source(timer));
al_start_timer(timer);
int score = 0;
int frameCount = 0;
font25 = al_load_font("Legacy.ttf", 38, 0);
font50 = al_load_font("STARWARS.TTF", 55, 0);
al_play_sample(music, 1, 0, 1, ALLEGRO_PLAYMODE_LOOP, NULL);
while (!done)
{
ALLEGRO_EVENT GETKEY;
al_wait_for_event(TestQueue, &GETKEY);
if (GETKEY.type == ALLEGRO_EVENT_DISPLAY_CLOSE) //will allow clicking X button to close program
{
done = true;
}
else if (GETKEY.type == ALLEGRO_EVENT_TIMER)
{
redraw = true;
frameCount++;
if (keys[LEFT])
player.MoveSpaceshipLeft();
if (keys[RIGHT])
player.MoveSpaceshipRight();
if (keys[SPACE]) //Spacebar will fire
{
if (gameState == 1)
gameState = 2;
else if(gameState ==2)
{
if (playerBullet.status ==0)
{
al_play_sample(blaster, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
playerBullet.status = 1;
}
}
}
UpdateBackground(BG);
UpdateBackground(MG);
UpdateBackground(FG);
collideEnemy(score);
if (Current_EnemyCount == 0)
{
EnemyWaveCount++;
Current_EnemyCount = NUM_COLUMNS*NUM_ROWS;
numAlive = NUM_COLUMNS*NUM_ROWS;
Reactivate_Enemies();
+ Reactivate_Barriers();
setEnemy();
+
if (player.health != 100)
player.health += 10;
}
CollideBarrier();
collidePlayer();
BulletBarrierCollide();
EnemyReachEnd();
enemyShoot();
moveDown(frameCount);
updateBullet();
}
else if (GETKEY.type==ALLEGRO_EVENT_KEY_DOWN)
{
switch(GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_ESCAPE: //esc to end the game
if (gameState == 2)
gameState = 3;
else
done = true;
break;
case ALLEGRO_KEY_RIGHT:
keys[RIGHT] = true;
break;
case ALLEGRO_KEY_LEFT:
keys[LEFT] = true;
break;
case ALLEGRO_KEY_SPACE:
keys[SPACE]=true;
break;
}
}
else if (GETKEY.type == ALLEGRO_EVENT_KEY_UP)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_RIGHT:
keys[RIGHT] = false;
break;
case ALLEGRO_KEY_LEFT:
keys[LEFT] = false;
break;
case ALLEGRO_KEY_SPACE:
keys[SPACE] = false;
break;
}
}
if (redraw && al_is_event_queue_empty(TestQueue)) //rendering
{
redraw = false;
if (gameState == 1)
{
al_draw_bitmap(MENU, 0, 0, 0);
al_draw_text(font25, al_map_rgb(255, 40, 78), width / 2, height- 750, ALLEGRO_ALIGN_CENTRE, "AMMST PRESENTS");
al_draw_text(font50, al_map_rgb(255, 40, 78), (width / 2), (height) - 690, ALLEGRO_ALIGN_CENTRE, "DARTH INVADERS");
al_draw_text(font25, al_map_rgb(255, 40, 78), (width / 2), (height) - 350, ALLEGRO_ALIGN_CENTRE, "PRESS SPACE TO START");
al_draw_text(font25, al_map_rgb(255, 40, 78), (width / 2), (height -300) , ALLEGRO_ALIGN_CENTRE, "PRESS ESC TO ESCAPE");
}
else if (gameState ==2)
{
DrawBackground(BG);
DrawBackground(MG);
DrawBackground(FG);
for (b = 0; b < 3; b++)
{
if (Asteroid[b].life_points != -1)
{
AsImage[b] = Barrier[Asteroid[b].life_points];
}
if (Asteroid[b].life_points == 5)
AsImage[b] = Barrier[4];
if (Asteroid[b].life_points == 4)
AsImage[b] = Barrier[3];
if (Asteroid[b].life_points == 3)
AsImage[b] = Barrier[2];
if (Asteroid[b].life_points == 2)
AsImage[b] = Barrier[1];
if (Asteroid[b].life_points == 1)
AsImage[b] = Barrier[0];
}
if (Asteroid[0].active == true)
al_draw_bitmap(AsImage[0], 50, 500, 0);
if (Asteroid[1].active == true)
al_draw_bitmap(AsImage[1], 435, 500, 0);
if (Asteroid[2].active == true)
al_draw_bitmap(AsImage[2], 820, 500, 0);
if (playerBullet.status == 1 && player.active) //if bullet still active
{
playerBullet.Increment(); //bullet will move pos
al_draw_bitmap(picBullet, playerBullet.x_pos, playerBullet.y_pos, 0); //redraw at new pos
if (playerBullet.y_pos < 20)
{
playerBullet.status = 0;
updateBullet();
}
}
if (enemyBullet.status == 1)
{
enemyBullet.Increment(); //bullet will move pos
al_draw_bitmap(picBullet, enemyBullet.x_pos, enemyBullet.y_pos, 0);
}
switch (player.health)
{
case 60:
al_draw_bitmap(picHealth[0], 10, 40, 0);
break;
case 50:
al_draw_bitmap(picHealth[1], 10, 40, 0);
break;
case 40:
al_draw_bitmap(picHealth[2], 10, 40, 0);
break;
case 30:
al_draw_bitmap(picHealth[3], 10, 40, 0);
break;
case 20:
al_draw_bitmap(picHealth[4], 10, 40, 0);
break;
case 10:
al_draw_bitmap(picHealth[5], 10, 40, 0);
break;
case 0:
al_draw_bitmap(picHealth[6], 10, 40, 0);
break;
}
if (player.health > 0)
{
al_draw_bitmap(picShip, player.x_pos - 45, player.y_pos, 0);
}
bool test = reachEnd();
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active)
{
arrEnem[i][j].Move(test);
al_draw_bitmap(picEnemy, arrEnem[i][j].x_pos, arrEnem[i][j].y_pos, 0);
}
}
}
al_draw_textf(font25, al_map_rgb(255, 0, 0), 10, 0, 0, "SCORE: %i", score);
}
else if(gameState == 3)
{
if (player.health == 0)
{
al_play_sample(explosion, 1, 0, 1, ALLEGRO_PLAYMODE_ONCE, NULL);
player.health = 1; // <--- bush method to make it only sound once :p
}
al_draw_textf(font50, al_map_rgb(255, 0, 0), width/2 -250, height/2 -200, 0, "FINAL SCORE: %i", score);
}
al_flip_display(); //flip display to show all drawn objects
al_clear_to_color(al_map_rgb(0, 0, 0)); //background colour
}
}
//Destroy allegro variables
al_destroy_sample(blaster);
al_destroy_sample(explosion);
al_destroy_sample(startGame);
al_destroy_sample(music);
al_destroy_event_queue(TestQueue);
al_destroy_timer(timer);
al_destroy_display(DISPLAY);
al_destroy_font(font25);
al_destroy_font(font50);
al_destroy_bitmap(Game);
al_destroy_bitmap(MENU);
al_destroy_bitmap(picEnemy);
al_destroy_bitmap(picShip);
al_destroy_bitmap(picBullet);
al_destroy_bitmap(bgImage);
al_destroy_bitmap(mgImage);
al_destroy_bitmap(fgImage);
for (int i = 0; i < 7; i++)
al_destroy_bitmap(picHealth[i]);
return 0;
}
void collidePlayer()
{
if (enemyBullet.status)
{
if (enemyBullet.y_pos < player.y_pos + player.boxheight //checks if within box
&& enemyBullet.y_pos > player.y_pos - player.boxheight
&& enemyBullet.x_pos < player.x_pos + player.boxright
&& enemyBullet.x_pos > player.x_pos - player.boxleft)
{
enemyBullet.status = 0; //bullet set to not active
player.health -= 10;
}
}
if (player.health == 0)
{
player.active = false;
gameState = 3;
}
}
void setEnemy()
{
//row 1
arrEnem[0][0].set(width / 2 - sp, 65); //left
arrEnem[1][0].set(width / 2, 65); //middle
arrEnem[2][0].set(width / 2 + sp, 65); //right
arrEnem[3][0].set(width / 2 - 2 * sp, 65);
arrEnem[4][0].set(width / 2 + 2 * sp, 65);
arrEnem[5][0].set(width / 2 - 3 * sp, 65);
arrEnem[6][0].set(width / 2 + 3 * sp, 65);
arrEnem[7][0].set(width / 2 - 4 * sp, 65);
//row 2
arrEnem[0][1].set(width / 2 - sp, 130); //left
arrEnem[1][1].set(width / 2, 130); //middle
arrEnem[2][1].set(width / 2 + sp, 130); //right
arrEnem[3][1].set(width / 2 - 2 * sp, 130);
arrEnem[4][1].set(width / 2 + 2 * sp, 130);
arrEnem[5][1].set(width / 2 - 3 * sp, 130);
arrEnem[6][1].set(width / 2 + 3 * sp, 130);
arrEnem[7][1].set(width / 2 - 4 * sp, 130);
//row 3
arrEnem[0][2].set(width / 2 - sp, 195); //left
arrEnem[1][2].set(width / 2, 195); //middle
arrEnem[2][2].set(width / 2 + sp, 195); //right
arrEnem[3][2].set(width / 2 - 2 * sp, 195);
arrEnem[4][2].set(width / 2 + 2 * sp, 195);
arrEnem[5][2].set(width / 2 - 3 * sp, 195);
arrEnem[6][2].set(width / 2 + 3 * sp, 195);
arrEnem[7][2].set(width / 2 - 4 * sp, 195);
//row 4
arrEnem[0][3].set(width / 2 - sp, 260);
arrEnem[1][3].set(width / 2, 260);
arrEnem[2][3].set(width / 2 + sp, 260);
arrEnem[3][3].set(width / 2 - 2 * sp, 260);
arrEnem[4][3].set(width / 2 + 2 * sp, 260);
arrEnem[5][3].set(width / 2 - 3 * sp, 260);
arrEnem[6][3].set(width / 2 + 3 * sp, 260);
arrEnem[7][3].set(width / 2 - 4 * sp, 260);
}
void collideEnemy(int &score)
{
if (playerBullet.status)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++) //collision detection ahead. Proceed with caution
{
if (arrEnem[i][j].active) //checks if enemy active
{
if (playerBullet.y_pos - 25 < arrEnem[i][j].y_pos + arrEnem[i][j].boxheight //checks if within box of enemy
&& playerBullet.y_pos > arrEnem[i][j].y_pos - arrEnem[i][j].boxheight
&& playerBullet.x_pos < arrEnem[i][j].x_pos + arrEnem[i][j].boxright
&& playerBullet.x_pos > arrEnem[i][j].x_pos - arrEnem[i][j].boxleft)
{
playerBullet.status = 0; //bullet set to not active
arrEnem[i][j].active = false; //enemy set to not active
Current_EnemyCount--;
switch (j)
{
case 0:
score += 40;
break;
case 1:
score += 20;
break;
case 2:
score += 20;
break;
default:
score += 10;
break;
}
numAlive--;
}
}
}
}
}
}
void moveDown(int &frameCount)
{
int interval = 60; //how long enemies take to move down depends on how many enemies left
if (numAlive > 30)
{
interval = 360;
}
else if (30 > numAlive && numAlive > 15)
{
interval = 300;
}
else if (15 > numAlive && numAlive > 8)
{
interval = 240;
}
else if (8 > numAlive && numAlive > 2)
{
interval = 120;
}
else if (numAlive == 0)
{
gameState = 3;
}
if (frameCount % interval == 0)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
arrEnem[i][j].y_pos += 20;
}
}
}
}
void enemyShoot()
{
if (!enemyBullet.status)
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active)
{
int randCol = rand() % NUM_COLUMNS;
int randRow = rand() % NUM_ROWS;
if (randCol == i && randRow == j)
{
enemyBullet.UpdatebulletPos(arrEnem[i][j]);
enemyBullet.status = 1;
break;
}
}
}
}
}
}
void updateBullet()
{
if (playerBullet.status == 0) //while bullet not active sets pos of ship as initial bullet pos
playerBullet.UpdateBulletPos(player);
}
bool reachEnd() //returns true if any enemy hits either of the sides
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active) //checks if enemy active
{
if (width-80 < arrEnem[i][j].x_pos && arrEnem[i][j].speed > 0) //if moving to the right and close to right wall
{
return true;
break;
}
else if (10 > arrEnem[i][j].x_pos && arrEnem[i][j].speed < 0) //if moving to the left and close to left wall
{
return true;
break;
}
}
}
}
return false;
}
void InitBackground(BackGround &back, float x, float y, float velx, float vely, int width, int height, int dirX, int dirY, ALLEGRO_BITMAP *image)
{
back.x = x;
back.y = y;
back.velX = velx;
back.velY = vely;
back.WIDTH = width;
back.HEIGHT = height;
back.dirX = dirX;
back.dirY = dirY;
back.image = image;
}
void UpdateBackground(BackGround &back)
{
back.x += back.velX * back.dirX;
if (back.x + back.WIDTH <= 0)
back.x = 0;
}
void DrawBackground(BackGround &back)
{
al_draw_bitmap(back.image, back.x, back.y, 0);
al_draw_bitmap(back.image, back.x + back.WIDTH, back.HEIGHT, 0);
al_draw_bitmap(back.image, back.x, back.HEIGHT, 0);
al_draw_bitmap(back.image, back.x + back.WIDTH, back.y, 0);
}
void InitialiseBarriers()
{
Asteroid[0].SetBarrierBound(111, 10, 15);
Asteroid[0].SetBarrierpos(50, 500);
Asteroid[0].setLife(5);
Asteroid[0].active = true;
Asteroid[1].SetBarrierBound(111, 10, 15);
Asteroid[1].SetBarrierpos(435, 500);
Asteroid[1].setLife(5);
Asteroid[1].active = true;
Asteroid[2].SetBarrierBound(111, 10, 15);
Asteroid[2].SetBarrierpos(820, 500);
Asteroid[2].setLife(5);
Asteroid[2].active = true;
}
void Reactivate_Enemies()
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
arrEnem[i][j].active = true;
}
}
}
void CollideBarrier()
{
for (int i = 0; i < 3; i++)
{
if (Asteroid[i].active && enemyBullet.status == 1)
{
if (enemyBullet.x_pos >(Asteroid[i].x_pos - Asteroid[i].Bleft) && enemyBullet.x_pos<(Asteroid[i].x_pos + Asteroid[i].Bright)
&& enemyBullet.y_pos>(Asteroid[i].y_pos - Asteroid[i].BHeight) && enemyBullet.y_pos < (Asteroid[i].y_pos + Asteroid[i].BHeight))
{
if (Asteroid[i].life_points != 0)
{
Asteroid[i].life_points--;
if (Asteroid[i].life_points == 0)
{
Asteroid[i].active = false;
}
}
enemyBullet.status = 0;
}
}
}
}
void BulletBarrierCollide()
{
for (int i=0; i < 3; i++)
{
if (Asteroid[i].active && playerBullet.status == 1)
{
if (playerBullet.x_pos >(Asteroid[i].x_pos - Asteroid[i].Bleft) && playerBullet.x_pos<(Asteroid[i].x_pos + Asteroid[i].Bright)
&& playerBullet.y_pos>(Asteroid[i].y_pos - Asteroid[i].BHeight) && playerBullet.y_pos < (Asteroid[i].y_pos + Asteroid[i].BHeight + 40))
{
playerBullet.status = 0;
}
}
}
}
void EnemyReachEnd()
{
for (int i = 0; i < NUM_COLUMNS; i++)
{
for (int j = 0; j < NUM_ROWS; j++)
{
if (arrEnem[i][j].active == true)
{
if (arrEnem[i][j].y_pos > Asteroid[0].y_pos - Asteroid[0].BHeight)
{
gameState = 3;
}
}
}
}
}
+
+void Reactivate_Barriers()
+{
+ for (b = 0; b < 3; b++)
+ {
+ Asteroid[b].life_points = 5;
+ Asteroid[b].active = true;
+ }
+
+}
\ No newline at end of file
diff --git a/allegro.log b/allegro.log
index 3516841..a67154a 100644
--- a/allegro.log
+++ b/allegro.log
@@ -1,780 +1,1010 @@
stdio D file_stdio.c:105 file_stdio_fopen [ 0.00000] opening C:\Users\Akshay\Source\Repos\DarthInvaders4\Debug\allegro5.cfg r
system D wsystem.c:721 maybe_parent_dir [ 0.00000] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders4\
system W wsystem.c:775 _al_win_safe_load_library [ 0.00000] PathFindOnPath failed to find shcore.dll
system D wsystem.c:721 maybe_parent_dir [ 0.00000] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders4\
system D wsystem.c:771 _al_win_safe_load_library [ 0.00000] PathFindOnPath found: C:\Windows\system32\user32.dll
system D wsystem.c:682 load_library_at_path [ 0.00000] Calling LoadLibrary C:\Windows\system32\user32.dll
system I wsystem.c:685 load_library_at_path [ 0.00000] Loaded C:\Windows\system32\user32.dll
system I system.c:252 al_install_system [ 0.00000] Allegro version: 5.2.0
-system D wsystem.c:721 maybe_parent_dir [ 0.00018] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders4\
-system D wsystem.c:771 _al_win_safe_load_library [ 0.00031] PathFindOnPath found: C:\Windows\system32\d3d9.dll
-system D wsystem.c:682 load_library_at_path [ 0.00033] Calling LoadLibrary C:\Windows\system32\d3d9.dll
-system I wsystem.c:685 load_library_at_path [ 0.00393] Loaded C:\Windows\system32\d3d9.dll
-d3d I d3d_disp.cpp:674 d3d_init_display [ 0.10054] Render-to-texture: 1
-d3d I d3d_disp.cpp:1769 d3d_create_display_locked [ 0.10120] faux_fullscreen=0
-d3d D d3d_disp.cpp:1770 d3d_create_display_locked [ 0.10124] al_display=00789FC8
-d3d D d3d_disp.cpp:1771 d3d_create_display_locked [ 0.10126] al_display->vt=007896F8
-d3d I d3d_display_formats.cpp:144 _al_d3d_generate_display_format_list [ 0.10157] found 64 format combinations
-display D display_settings.c:212 debug_display_settings [ 0.10161] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.10164] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.10167] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.10170] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.10172] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.10176] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.10312] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11199] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11201] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11203] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11205] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11207] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11208] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11210] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11211] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11213] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11219] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11221] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11223] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11225] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11226] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11228] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11229] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11231] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11232] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11234] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11236] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11238] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11239] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11241] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11242] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11244] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.11245] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11247] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11249] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11251] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11252] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11254] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11255] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11257] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11259] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11261] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11262] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11264] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11266] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11267] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11269] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11271] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11273] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11275] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11276] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11278] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11280] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11282] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11283] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11285] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11286] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11288] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11290] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11292] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11293] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11295] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11297] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11299] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11300] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11302] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11303] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11305] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11306] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11308] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11310] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11312] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11313] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11315] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11316] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11318] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11320] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11322] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11323] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11325] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11326] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11328] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11330] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11332] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11333] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11335] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11336] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11338] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11339] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11341] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11343] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11345] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11346] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11348] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11349] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.11351] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.11353] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11355] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11356] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11358] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11359] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11361] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11363] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11365] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11366] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11368] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11370] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11372] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11373] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11375] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11378] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11380] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11382] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11384] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11385] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11387] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11389] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11390] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11392] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11394] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11395] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11397] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11399] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11401] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11402] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11404] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.11405] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.11407] Single Buffer requirement not met.
-d3d D d3d_disp.cpp:1669 d3d_create_display_internals [ 0.11410] Trying format 0.
-d3d I d3d_disp.cpp:1344 d3d_display_thread_proc [ 0.13053] Chose a display format: 23
-d3d I d3d_disp.cpp:1413 d3d_display_thread_proc [ 0.13059] Normal window.
-d3d I d3d_disp.cpp:781 d3d_create_device [ 0.15188] Using no depth stencil buffer
-d3d D d3d_disp.cpp:839 d3d_create_device [ 0.16750] BeginScene succeeded in create_device
-d3d D d3d_disp.cpp:847 d3d_create_device [ 0.16756] Success
-d3d D d3d_disp.cpp:1692 d3d_create_display_internals [ 0.16759] Resumed after wait.
-d3d I d3d_disp.cpp:1725 d3d_create_display_internals [ 0.16764] Format 0 succeeded.
-d3d D d3d_disp.cpp:1756 d3d_create_display_internals [ 0.16768] Returning d3d_display: 00789FC8
-d3d D d3d_disp.cpp:1781 d3d_create_display_locked [ 0.16771] al_display=00789FC8
-d3d D d3d_disp.cpp:1782 d3d_create_display_locked [ 0.16773] al_display->vt=007896F8
-system D wsystem.c:721 maybe_parent_dir [ 0.16788] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders4\
-system D wsystem.c:771 _al_win_safe_load_library [ 0.16806] PathFindOnPath found: C:\Windows\system32\d3dx9_43.dll
-system D wsystem.c:682 load_library_at_path [ 0.16809] Calling LoadLibrary C:\Windows\system32\d3dx9_43.dll
-system I wsystem.c:685 load_library_at_path [ 0.17267] Loaded C:\Windows\system32\d3dx9_43.dll
-d3dx9 I d3d_d3dx9.cpp:88 _imp_load_d3dx9_module_version [ 0.17277] Module "d3dx9_43.dll" loaded.
-audio-dsound I dsound.cpp:249 _dsound_open [ 0.17393] Starting DirectSound...
-audio-dsound D dsound.cpp:258 _dsound_open [ 0.19429] DirectSoundCreate8 succeeded
-audio I audio.c:347 do_install_audio [ 0.19542] Using DirectSound driver
-audio-dsound D dsound.cpp:290 _dsound_allocate_voice [ 0.19551] Allocating voice
-audio-dsound D dsound.cpp:349 _dsound_allocate_voice [ 0.19555] Allocated voice
-dtor D dtor.c:187 _al_register_destructor [ 0.19558] added dtor for voice 00782868, func 0FA6117C
-dtor D dtor.c:187 _al_register_destructor [ 0.19562] added dtor for mixer 007E4860, func 0FA611F9
-audio-dsound D dsound.cpp:446 _dsound_start_voice [ 0.19565] Starting voice
-audio-dsound D dsound.cpp:474 _dsound_start_voice [ 0.19568] CreateSoundBuffer
-audio-dsound D dsound.cpp:483 _dsound_start_voice [ 0.19649] CreateSoundBuffer succeeded
-audio-dsound D dsound.cpp:489 _dsound_start_voice [ 0.19655] Starting _dsound_update thread
-audio-dsound I dsound.cpp:499 _dsound_start_voice [ 0.19664] Voice started
-dtor D dtor.c:187 _al_register_destructor [ 0.19668] added dtor for sample_instance 007F2908, func 0FA614BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.19672] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19675]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19677]
-dtor D dtor.c:187 _al_register_destructor [ 0.19680] added dtor for sample_instance 007FA218, func 0FA614BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.19683] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19685]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19687]
-dtor D dtor.c:187 _al_register_destructor [ 0.19690] added dtor for sample_instance 007FA320, func 0FA614BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.19692] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19695]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19697]
-dtor D dtor.c:187 _al_register_destructor [ 0.19699] added dtor for sample_instance 007FA4B8, func 0FA614BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.19702] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19704]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.19706]
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.19709] Loading sample XWing-Laser.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.19712] opening XWing-Laser.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.19754] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.19757] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.19760] rate 22050
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.19762] total_samples 9153
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.19765] total_size 18306
-dtor D dtor.c:187 _al_register_destructor [ 0.19973] added dtor for sample 007C8CE0, func 0FA613ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.19982] Loading sample Blast.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.19985] opening Blast.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.20085] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.20089] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.20091] rate 24000
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.20094] total_samples 52884
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.20097] total_size 105768
-dtor D dtor.c:187 _al_register_destructor [ 0.20513] added dtor for sample 007C8D28, func 0FA613ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.20521] Loading sample xwing.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.20524] opening xwing.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.20567] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.20570] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.20572] rate 11025
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.20574] total_samples 37250
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.20576] total_size 74500
-dtor D dtor.c:187 _al_register_destructor [ 0.20865] added dtor for sample 007C8D70, func 0FA613ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.20873] Loading sample Star_Wars.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.20877] opening Star_Wars.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.20941] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.20944] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.20945] rate 22050
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.20947] total_samples 7172901
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.20948] total_size 14345802
-dtor D dtor.c:187 _al_register_destructor [ 0.49463] added dtor for sample 007C8E00, func 0FA613ED
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.49468] opening Lazer.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49480] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49485] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49487] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49488] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49489] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49490] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49492] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49493] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49494] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.49495] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.49497] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.49498] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.49499] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.49509] added dtor for bitmap 008161F8, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.49541] opening player1.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49548] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49550] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49551] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49553] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49554] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49555] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49557] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49558] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49560] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.49561] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.49563] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.49564] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.49566] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.49577] added dtor for bitmap 008293A8, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.49618] opening enemy.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49625] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49627] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49629] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49630] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49631] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49633] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49634] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49636] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49637] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.49639] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.49640] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.49642] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.49643] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.49655] added dtor for bitmap 008290D8, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.49681] opening Goodpic.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49688] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49690] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49691] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49692] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49694] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49695] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49697] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49698] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.49699] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.49701] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.49702] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.49706] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.49708] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.49990] added dtor for bitmap 0080A478, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.54703] opening star_sky.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54721] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54723] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54725] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54726] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54728] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54729] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54730] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54732] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54733] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.54735] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.54736] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.54738] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.54739] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.54911] added dtor for bitmap 0082FD60, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.60189] opening B4.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60212] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60214] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60215] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60217] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60218] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60220] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60221] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60222] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60223] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.60225] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.60226] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.60228] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.60229] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.60237] added dtor for bitmap 07A64140, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.60651] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.60659] _al_d3d_sync_bitmap (video) ref count == 1
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.61546] opening B3.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61559] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61561] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61563] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61565] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61567] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61568] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61570] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61571] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61573] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.61574] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.61576] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.61578] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.61579] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.61589] added dtor for bitmap 07A642A8, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.61624] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.61628] _al_d3d_sync_bitmap (video) ref count == 1
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.61703] opening B2.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61713] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61715] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61716] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61719] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61720] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61722] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61724] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61725] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61726] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.61727] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.61729] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.61730] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.61732] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.61765] added dtor for bitmap 07A64410, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.61796] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.61800] _al_d3d_sync_bitmap (video) ref count == 1
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.61866] opening B1.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61875] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61877] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61879] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61880] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61881] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61882] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61884] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61887] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.61888] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.61891] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.61893] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.61895] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.61897] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.61908] added dtor for bitmap 07A12F50, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.61943] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.61947] _al_d3d_sync_bitmap (video) ref count == 1
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62005] opening B0.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62014] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62016] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62018] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62020] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62021] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62022] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62023] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62025] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62026] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62027] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62029] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62030] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62032] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62038] added dtor for bitmap 07A130B8, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.62065] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.62068] _al_d3d_sync_bitmap (video) ref count == 1
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62127] opening 1.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62135] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62137] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62138] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62140] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62141] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62142] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62143] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62145] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62146] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62147] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62149] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62150] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62151] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62158] added dtor for bitmap 07A13220, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62171] opening 2.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62178] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62180] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62181] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62182] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62184] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62185] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62186] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62187] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62189] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62190] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62191] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62193] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62194] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62199] added dtor for bitmap 07A13388, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62211] opening 3.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62218] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62220] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62221] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62222] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62224] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62225] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62226] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62227] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62229] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62230] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62231] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62233] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62234] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62240] added dtor for bitmap 07A134F0, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62250] opening 4.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62257] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62259] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62260] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62261] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62263] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62264] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62266] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62267] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62269] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62270] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62272] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62274] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62276] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62281] added dtor for bitmap 07A18A58, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62291] opening 5.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62298] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62299] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62301] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62302] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62303] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62304] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62306] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62307] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62308] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62310] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62311] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62312] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62314] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62322] added dtor for bitmap 07A64818, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62333] opening 6.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62341] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62343] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62344] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62346] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62347] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62349] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62350] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62352] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62353] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62355] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62356] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62358] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62359] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62365] added dtor for bitmap 07A64578, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62375] opening blank.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62382] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62384] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62386] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62387] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62389] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62390] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62392] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62394] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62396] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62397] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62399] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62401] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62402] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62445] added dtor for bitmap 00829240, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.62628] opening starBG.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62646] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62648] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62649] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62651] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62652] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62653] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62654] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62656] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62657] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62658] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62660] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62661] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62663] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.62745] added dtor for bitmap 07ACC1F8, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.63987] opening starMG.jpg rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64005] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64007] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64009] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64010] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64012] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64013] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64015] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64016] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.64019] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.64021] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.64023] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.64024] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.64027] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.64168] added dtor for bitmap 07ACC360, func 0F242202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.65946] opening starFG.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65970] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65972] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65974] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65976] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65977] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65978] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65979] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65981] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.65982] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.65983] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.65985] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.65986] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.65987] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.66057] added dtor for bitmap 07ACC4C8, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.69974] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.69978] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.70840] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.70845] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.70887] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.70889] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.70927] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.70930] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.70961] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.70964] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.70996] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.70998] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.71029] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.71032] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.71781] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.71784] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.71898] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.71901] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.71942] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.71944] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.71964] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.71967] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85824] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85829] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85830] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85832] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85833] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85834] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85836] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85837] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85839] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.85840] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.85842] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.85843] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.85845] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.85853] added dtor for bitmap 07ACC630, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.86143] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.86149] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 0.86301] removed dtor for bitmap 07ACC630
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.86306] d3d_destroy_bitmap: Release video texture failed.
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86323] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86327] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86330] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86332] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86334] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86337] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86339] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86341] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.86342] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.86344] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.86346] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.86347] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.86349] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.86360] added dtor for bitmap 07ACC630, func 0F242202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.86490] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.86493] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 0.86592] removed dtor for bitmap 07ACC630
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.86595] d3d_destroy_bitmap: Release video texture failed.
-dtor D dtor.c:187 _al_register_destructor [ 0.86622] added dtor for timer 00809F70, func 0F241730
-dtor D dtor.c:187 _al_register_destructor [ 0.86625] added dtor for queue 00805580, func 0F242351
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.86677] opening Legacy.ttf rb
-font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.86707] Font Legacy.ttf loaded with pixel size 0 x 38.
-font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.86710] ascent=29.0, descent=-9.0, height=38.0
-dtor D dtor.c:187 _al_register_destructor [ 0.86712] added dtor for ttf_font 007C32B0, func 0F981055
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.86714] opening STARWARS.TTF rb
-font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.86733] Font STARWARS.TTF loaded with pixel size 0 x 55.
-font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.86735] ascent=37.0, descent=-11.0, height=46.0
-dtor D dtor.c:187 _al_register_destructor [ 0.86738] added dtor for ttf_font 007C3270, func 0F981055
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.86740] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.86742] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.86745] 0.500000
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89863] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89870] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89874] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89877] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89881] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89885] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89889] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89892] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89896] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.89900] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.89904] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.89908] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.89912] Chose bitmap format 9
-font D ttf.c:235 alloc_glyph_region [ 0.90016] Glyph 33: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90025] Locking glyph region: 07ACC630 0 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90114] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 0.90131] Glyph 45: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90136] Locking glyph region: 07ACC630 20 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90145] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 0.90157] Glyph 51: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90162] Locking glyph region: 07ACC630 40 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90170] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 0.90183] Glyph 52: 17x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90189] Locking glyph region: 07ACC630 60 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90198] Unlocking page: 07ACC630
-font D ttf.c:437 cache_glyph [ 0.90206] Glyph 108 has zero size.
-font D ttf.c:235 alloc_glyph_region [ 0.90218] Glyph 48: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90224] Locking glyph region: 07ACC630 80 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90232] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 0.90245] Glyph 50: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90250] Locking glyph region: 07ACC630 100 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90259] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 0.90271] Glyph 37: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90277] Locking glyph region: 07ACC630 120 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90286] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 0.90298] Glyph 46: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.90303] Locking glyph region: 07ACC630 140 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.90312] Unlocking page: 07ACC630
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90349] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90356] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90360] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90365] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90370] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90374] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90380] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90387] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90391] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.90395] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.90399] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.90404] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.90408] Chose bitmap format 9
-font D ttf.c:235 alloc_glyph_region [ 0.90792] Glyph 37: 39x38 (40x40)
-font D ttf.c:279 alloc_glyph_region [ 0.90801] Locking glyph region: 07ACC798 0 0 40 40
-font D ttf.c:163 unlock_current_page [ 0.91206] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91228] Glyph 34: 46x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91234] Locking glyph region: 07ACC798 40 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.91249] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91267] Glyph 51: 45x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91272] Locking glyph region: 07ACC798 88 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.91287] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91298] Glyph 53: 40x38 (40x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91304] Locking glyph region: 07ACC798 136 0 40 40
-font D ttf.c:163 unlock_current_page [ 0.91317] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91330] Glyph 41: 47x38 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91336] Locking glyph region: 07ACC798 176 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.91350] Unlocking page: 07ACC798
-font D ttf.c:437 cache_glyph [ 0.91358] Glyph 1 has zero size.
-font D ttf.c:235 alloc_glyph_region [ 0.91368] Glyph 42: 14x39 (16x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91374] Locking glyph region: 07ACC798 224 0 16 40
-font D ttf.c:163 unlock_current_page [ 0.91383] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91397] Glyph 47: 48x38 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91402] Locking glyph region: 07ACC798 240 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.91416] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91439] Glyph 55: 46x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91446] Locking glyph region: 07ACC798 288 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.91462] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91475] Glyph 38: 41x38 (44x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91481] Locking glyph region: 07ACC798 336 0 44 40
-font D ttf.c:163 unlock_current_page [ 0.91494] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91509] Glyph 52: 44x39 (44x40)
-font D ttf.c:279 alloc_glyph_region [ 0.91515] Locking glyph region: 07ACC798 380 0 44 40
-font D ttf.c:163 unlock_current_page [ 0.91530] Unlocking page: 07ACC798
-font D ttf.c:235 alloc_glyph_region [ 0.91553] Glyph 35: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.91559] Locking glyph region: 07ACC630 160 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.91567] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 0.91579] Glyph 47: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.91584] Locking glyph region: 07ACC630 180 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.91607] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95302] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95318] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95547] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95557] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95614] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95621] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95676] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95684] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.97085] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.97095] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99316] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99330] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99454] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99465] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99509] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99517] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99578] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99587] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99633] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99644] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99689] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99698] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99740] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99748] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99788] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99797] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99845] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99853] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99901] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99911] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.99953] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.99963] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.00002] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.00011] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.00089] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.00099] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.00511] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.00524] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.01291] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.01299] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.01608] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.01615] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.01862] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.01877] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 1.60123] Glyph 66: 5x15 (8x16)
-font D ttf.c:279 alloc_glyph_region [ 1.60135] Locking glyph region: 07ACC630 200 0 8 16
-font D ttf.c:163 unlock_current_page [ 1.60146] Unlocking page: 07ACC630
-font D ttf.c:235 alloc_glyph_region [ 1.60165] Glyph 94: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 1.60173] Locking glyph region: 07ACC630 208 0 20 24
-font D ttf.c:163 unlock_current_page [ 1.60217] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.60272] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.60282] _al_d3d_sync_bitmap (video) ref count == 1
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 1.61694] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 1.61708] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 1.61715] 0.500000
-font D ttf.c:235 alloc_glyph_region [ 4.26777] Glyph 93: 19x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 4.26787] Locking glyph region: 07ACC630 228 0 20 24
-font D ttf.c:163 unlock_current_page [ 4.26798] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 4.26876] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 4.26886] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 6.70112] Glyph 95: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 6.70122] Locking glyph region: 07ACC630 248 0 20 24
-font D ttf.c:163 unlock_current_page [ 6.70135] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.70220] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.70230] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 8.40112] Glyph 96: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 8.40123] Locking glyph region: 07ACC630 268 0 20 24
-font D ttf.c:163 unlock_current_page [ 8.40137] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 8.40220] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 8.40229] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 9.60111] Glyph 97: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 9.60121] Locking glyph region: 07ACC630 288 0 20 24
-font D ttf.c:163 unlock_current_page [ 9.60133] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 9.60218] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 9.60228] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 10.26817] Glyph 98: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 10.26829] Locking glyph region: 07ACC630 308 0 20 24
-font D ttf.c:163 unlock_current_page [ 10.26844] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 10.26935] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 10.26952] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 13.26811] Glyph 100: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 13.26823] Locking glyph region: 07ACC630 328 0 20 24
-font D ttf.c:163 unlock_current_page [ 13.26835] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 13.26935] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 13.26947] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 13.93438] Glyph 101: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 13.93449] Locking glyph region: 07ACC630 348 0 20 24
-font D ttf.c:163 unlock_current_page [ 13.93462] Unlocking page: 07ACC630
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 13.93546] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 13.93555] _al_d3d_sync_bitmap (video) ref count == 1
+system D wsystem.c:721 maybe_parent_dir [ 0.00017] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders4\
+system D wsystem.c:771 _al_win_safe_load_library [ 0.00029] PathFindOnPath found: C:\Windows\system32\d3d9.dll
+system D wsystem.c:682 load_library_at_path [ 0.00031] Calling LoadLibrary C:\Windows\system32\d3d9.dll
+system I wsystem.c:685 load_library_at_path [ 0.00428] Loaded C:\Windows\system32\d3d9.dll
+d3d I d3d_disp.cpp:674 d3d_init_display [ 0.01956] Render-to-texture: 1
+d3d I d3d_disp.cpp:1769 d3d_create_display_locked [ 0.02002] faux_fullscreen=0
+d3d D d3d_disp.cpp:1770 d3d_create_display_locked [ 0.02005] al_display=00519FC8
+d3d D d3d_disp.cpp:1771 d3d_create_display_locked [ 0.02006] al_display->vt=005196F8
+d3d I d3d_display_formats.cpp:144 _al_d3d_generate_display_format_list [ 0.02029] found 64 format combinations
+display D display_settings.c:212 debug_display_settings [ 0.02031] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02034] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02035] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02037] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02038] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02040] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02042] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02043] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02045] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02047] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02048] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02050] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02051] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02053] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02054] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02056] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02060] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02062] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02063] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02065] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02067] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02069] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02070] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02072] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02073] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02075] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02076] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02078] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02080] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02081] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02083] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02085] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.02086] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02088] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02089] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02091] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02093] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02095] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02096] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02098] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02099] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02101] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02103] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02105] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02106] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02108] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02109] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02111] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02113] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02115] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02116] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02118] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02120] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02121] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02123] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02125] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02126] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02128] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02129] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02131] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02133] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02135] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02136] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02138] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02139] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02141] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02143] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02145] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02146] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02148] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02149] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02151] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02152] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02154] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02156] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02157] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02159] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02161] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02162] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02164] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02165] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02167] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02169] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02171] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02172] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02174] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02175] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02177] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02179] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02180] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02182] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02184] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02185] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02187] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02188] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.02190] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.02191] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02193] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02195] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02197] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02198] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02200] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02201] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02203] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02205] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02207] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02208] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02210] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02212] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02213] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02217] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02219] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02221] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02223] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02224] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02226] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02227] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02229] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02231] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02233] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02234] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02236] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02238] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02239] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02241] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02243] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.02244] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.02246] Single Buffer requirement not met.
+d3d D d3d_disp.cpp:1669 d3d_create_display_internals [ 0.02249] Trying format 0.
+d3d I d3d_disp.cpp:1344 d3d_display_thread_proc [ 0.02340] Chose a display format: 23
+d3d I d3d_disp.cpp:1413 d3d_display_thread_proc [ 0.02344] Normal window.
+d3d I d3d_disp.cpp:781 d3d_create_device [ 0.03087] Using no depth stencil buffer
+d3d D d3d_disp.cpp:839 d3d_create_device [ 0.03976] BeginScene succeeded in create_device
+d3d D d3d_disp.cpp:847 d3d_create_device [ 0.03981] Success
+d3d D d3d_disp.cpp:1692 d3d_create_display_internals [ 0.03985] Resumed after wait.
+d3d I d3d_disp.cpp:1725 d3d_create_display_internals [ 0.03989] Format 0 succeeded.
+d3d D d3d_disp.cpp:1756 d3d_create_display_internals [ 0.03992] Returning d3d_display: 00519FC8
+d3d D d3d_disp.cpp:1781 d3d_create_display_locked [ 0.03994] al_display=00519FC8
+d3d D d3d_disp.cpp:1782 d3d_create_display_locked [ 0.03996] al_display->vt=005196F8
+system D wsystem.c:721 maybe_parent_dir [ 0.04007] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders4\
+system D wsystem.c:771 _al_win_safe_load_library [ 0.04019] PathFindOnPath found: C:\Windows\system32\d3dx9_43.dll
+system D wsystem.c:682 load_library_at_path [ 0.04021] Calling LoadLibrary C:\Windows\system32\d3dx9_43.dll
+system I wsystem.c:685 load_library_at_path [ 0.04344] Loaded C:\Windows\system32\d3dx9_43.dll
+d3dx9 I d3d_d3dx9.cpp:88 _imp_load_d3dx9_module_version [ 0.04350] Module "d3dx9_43.dll" loaded.
+audio-dsound I dsound.cpp:249 _dsound_open [ 0.04416] Starting DirectSound...
+audio-dsound D dsound.cpp:258 _dsound_open [ 0.09010] DirectSoundCreate8 succeeded
+audio I audio.c:347 do_install_audio [ 0.09126] Using DirectSound driver
+audio-dsound D dsound.cpp:290 _dsound_allocate_voice [ 0.09134] Allocating voice
+audio-dsound D dsound.cpp:349 _dsound_allocate_voice [ 0.09136] Allocated voice
+dtor D dtor.c:187 _al_register_destructor [ 0.09137] added dtor for voice 00512868, func 0F84117C
+dtor D dtor.c:187 _al_register_destructor [ 0.09140] added dtor for mixer 0056CCE0, func 0F8411F9
+audio-dsound D dsound.cpp:446 _dsound_start_voice [ 0.09142] Starting voice
+audio-dsound D dsound.cpp:474 _dsound_start_voice [ 0.09143] CreateSoundBuffer
+audio-dsound D dsound.cpp:483 _dsound_start_voice [ 0.09197] CreateSoundBuffer succeeded
+audio-dsound D dsound.cpp:489 _dsound_start_voice [ 0.09200] Starting _dsound_update thread
+audio-dsound I dsound.cpp:499 _dsound_start_voice [ 0.09243] Voice started
+dtor D dtor.c:187 _al_register_destructor [ 0.09249] added dtor for sample_instance 00586AF0, func 0F8414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09268] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09270]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09272]
+dtor D dtor.c:187 _al_register_destructor [ 0.09275] added dtor for sample_instance 00598368, func 0F8414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09277] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09280]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09281]
+dtor D dtor.c:187 _al_register_destructor [ 0.09284] added dtor for sample_instance 00598540, func 0F8414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09286] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09288]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09290]
+dtor D dtor.c:187 _al_register_destructor [ 0.09292] added dtor for sample_instance 00598A30, func 0F8414BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.09295] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09297]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.09299]
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.09302] Loading sample XWing-Laser.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.09304] opening XWing-Laser.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.09344] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.09347] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.09349] rate 22050
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.09351] total_samples 9153
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.09353] total_size 18306
+dtor D dtor.c:187 _al_register_destructor [ 0.09535] added dtor for sample 00558CE0, func 0F8413ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.09540] Loading sample Blast.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.09543] opening Blast.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.09574] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.09576] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.09578] rate 24000
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.09579] total_samples 52884
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.09581] total_size 105768
+dtor D dtor.c:187 _al_register_destructor [ 0.09983] added dtor for sample 00558D28, func 0F8413ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.09990] Loading sample xwing.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.09992] opening xwing.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10033] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10035] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10037] rate 11025
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10040] total_samples 37250
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10042] total_size 74500
+dtor D dtor.c:187 _al_register_destructor [ 0.10367] added dtor for sample 00558D70, func 0F8413ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.10376] Loading sample Star_Wars.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.10379] opening Star_Wars.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.10449] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.10453] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.10455] rate 22050
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.10457] total_samples 7172901
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.10459] total_size 14345802
+dtor D dtor.c:187 _al_register_destructor [ 0.40986] added dtor for sample 00558E00, func 0F8413ED
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.40994] opening Lazer.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41012] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41014] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41017] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41019] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41021] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41023] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41025] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41027] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41029] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.41031] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.41034] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.41036] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.41038] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.41053] added dtor for bitmap 005CB4B0, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.41076] opening player1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41088] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41091] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41093] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41095] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41097] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41099] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41102] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41104] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41106] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.41108] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.41110] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.41112] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.41114] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.41125] added dtor for bitmap 07B11BC0, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.41185] opening enemy.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41197] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41200] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41202] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41204] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41206] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41208] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41210] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41212] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41214] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.41216] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.41219] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.41221] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.41223] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.41236] added dtor for bitmap 005B4840, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.41268] opening Goodpic.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41281] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41284] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41286] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41288] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41290] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41292] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41294] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41296] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.41298] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.41300] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.41302] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.41310] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.41312] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.41431] added dtor for bitmap 07B11A58, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.46915] opening star_sky.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46932] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46934] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46935] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46936] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46937] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46939] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46940] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46941] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.46942] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.46944] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.46945] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.46947] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.46948] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.47038] added dtor for bitmap 005A2728, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.51517] opening B4.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51542] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51545] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51548] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51550] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51552] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51554] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51556] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51568] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.51573] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.51576] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.51578] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.51580] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.51583] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.51598] added dtor for bitmap 005B4DF8, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.51967] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.51975] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.52723] opening B3.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52738] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52740] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52742] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52743] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52745] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52746] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52747] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52749] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52750] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.52751] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.52752] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.52754] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.52755] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.52764] added dtor for bitmap 005B4BD0, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52797] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52801] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.52869] opening B2.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52883] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52885] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52887] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52888] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52889] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52890] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52892] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52893] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.52894] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.52895] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.52897] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.52898] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.52900] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.52939] added dtor for bitmap 005AC318, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.52982] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.52987] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53083] opening B1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53100] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53103] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53105] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53106] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53107] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53109] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53110] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53111] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53113] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53116] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53117] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53119] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53120] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53129] added dtor for bitmap 005AC480, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53163] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53167] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53267] opening B0.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53286] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53288] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53289] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53291] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53293] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53294] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53295] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53297] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53298] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53300] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53301] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53303] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53305] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53314] added dtor for bitmap 00598648, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.53345] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.53349] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53425] opening 1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53440] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53442] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53444] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53446] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53448] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53450] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53452] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53454] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53456] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53458] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53460] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53462] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53464] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53475] added dtor for bitmap 005A7A50, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53488] opening 2.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53498] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53501] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53502] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53504] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53505] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53507] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53508] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53510] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53511] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53513] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53515] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53516] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53518] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53523] added dtor for bitmap 005B49A8, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53535] opening 3.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53543] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53545] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53546] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53547] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53549] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53550] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53552] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53553] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53555] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53556] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53558] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53559] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53561] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53566] added dtor for bitmap 07AED9B8, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53579] opening 4.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53586] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53588] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53589] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53591] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53592] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53593] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53595] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53597] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53598] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53600] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53602] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53604] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53605] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53611] added dtor for bitmap 005B4F60, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53622] opening 5.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53629] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53631] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53632] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53634] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53635] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53636] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53638] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53639] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53640] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53642] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53643] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53644] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53646] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53651] added dtor for bitmap 07AEDB20, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53661] opening 6.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53669] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53673] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53675] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53677] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53679] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53681] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53684] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53686] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53688] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53690] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53692] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53695] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53697] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53703] added dtor for bitmap 005987B0, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.53713] opening blank.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53721] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53724] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53727] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53729] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53731] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53733] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53735] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53738] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.53740] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.53742] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.53744] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.53747] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.53749] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.53783] added dtor for bitmap 07AEDC88, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.54050] opening starBG.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54078] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54081] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54083] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54085] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54087] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54089] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54108] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54111] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54113] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.54115] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.54117] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.54120] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.54122] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.54208] added dtor for bitmap 07B61070, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.56000] opening starMG.jpg rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56020] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56023] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56024] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56026] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56027] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56028] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56030] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56031] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56033] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.56034] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.56036] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.56037] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.56039] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.56159] added dtor for bitmap 07B611D8, func 0FBB2202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.58213] opening starFG.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58235] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58237] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58239] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58240] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58242] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58243] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58244] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58245] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58247] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.58248] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.58249] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.58251] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.58253] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.58307] added dtor for bitmap 07B61340, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.61507] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.61512] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.62269] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.62276] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.62319] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.62322] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.62358] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.62361] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.62391] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.62394] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.62415] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.62417] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.62435] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.62437] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.63186] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.63190] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.63298] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.63301] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.63337] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.63339] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.63353] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.63355] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78051] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78054] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78056] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78057] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78059] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78060] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78062] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78063] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78065] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.78066] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.78067] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.78069] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.78070] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.78080] added dtor for bitmap 07B614A8, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.78358] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.78365] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 0.78511] removed dtor for bitmap 07B614A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.78515] d3d_destroy_bitmap: Release video texture failed.
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78582] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78586] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78588] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78591] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78593] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78595] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78597] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78598] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.78600] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.78602] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.78603] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.78605] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.78607] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.78618] added dtor for bitmap 07B614A8, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.78749] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.78753] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 0.78852] removed dtor for bitmap 07B614A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.78855] d3d_destroy_bitmap: Release video texture failed.
+dtor D dtor.c:187 _al_register_destructor [ 0.78875] added dtor for timer 00598470, func 0FBB1730
+dtor D dtor.c:187 _al_register_destructor [ 0.78878] added dtor for queue 0D0A1D48, func 0FBB2351
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.78931] opening Legacy.ttf rb
+font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.78958] Font Legacy.ttf loaded with pixel size 0 x 38.
+font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.78961] ascent=29.0, descent=-9.0, height=38.0
+dtor D dtor.c:187 _al_register_destructor [ 0.78963] added dtor for ttf_font 07B6AEA8, func 0FB11055
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.78965] opening STARWARS.TTF rb
+font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.78985] Font STARWARS.TTF loaded with pixel size 0 x 55.
+font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.78987] ascent=37.0, descent=-11.0, height=46.0
+dtor D dtor.c:187 _al_register_destructor [ 0.78989] added dtor for ttf_font 07B6AF68, func 0FB11055
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.78991] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.78993] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.78994] 0.500000
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82095] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82099] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82101] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82102] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82104] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82106] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82108] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82110] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82111] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.82113] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.82115] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.82117] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.82119] Chose bitmap format 9
+font D ttf.c:235 alloc_glyph_region [ 0.82167] Glyph 33: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82170] Locking glyph region: 07B614A8 0 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82217] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 0.82225] Glyph 45: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82227] Locking glyph region: 07B614A8 20 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82232] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 0.82236] Glyph 51: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82238] Locking glyph region: 07B614A8 40 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82241] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 0.82246] Glyph 52: 17x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82248] Locking glyph region: 07B614A8 60 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82251] Unlocking page: 07B614A8
+font D ttf.c:437 cache_glyph [ 0.82253] Glyph 108 has zero size.
+font D ttf.c:235 alloc_glyph_region [ 0.82257] Glyph 48: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82259] Locking glyph region: 07B614A8 80 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82262] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 0.82266] Glyph 50: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82268] Locking glyph region: 07B614A8 100 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82272] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 0.82276] Glyph 37: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82278] Locking glyph region: 07B614A8 120 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82281] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 0.82286] Glyph 46: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82287] Locking glyph region: 07B614A8 140 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82290] Unlocking page: 07B614A8
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82301] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82302] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82304] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82305] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82307] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82308] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82309] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82311] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.82312] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.82314] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.82315] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.82317] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.82318] Chose bitmap format 9
+font D ttf.c:235 alloc_glyph_region [ 0.82506] Glyph 37: 39x38 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82510] Locking glyph region: 07B61610 0 0 40 40
+font D ttf.c:163 unlock_current_page [ 0.82669] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82677] Glyph 34: 46x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82679] Locking glyph region: 07B61610 40 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.82684] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82690] Glyph 51: 45x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82692] Locking glyph region: 07B61610 88 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.82697] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82701] Glyph 53: 40x38 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82703] Locking glyph region: 07B61610 136 0 40 40
+font D ttf.c:163 unlock_current_page [ 0.82707] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82712] Glyph 41: 47x38 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82713] Locking glyph region: 07B61610 176 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.82718] Unlocking page: 07B61610
+font D ttf.c:437 cache_glyph [ 0.82721] Glyph 1 has zero size.
+font D ttf.c:235 alloc_glyph_region [ 0.82725] Glyph 42: 14x39 (16x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82727] Locking glyph region: 07B61610 224 0 16 40
+font D ttf.c:163 unlock_current_page [ 0.82730] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82735] Glyph 47: 48x38 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82736] Locking glyph region: 07B61610 240 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.82741] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82746] Glyph 55: 46x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82748] Locking glyph region: 07B61610 288 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.82752] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82756] Glyph 38: 41x38 (44x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82758] Locking glyph region: 07B61610 336 0 44 40
+font D ttf.c:163 unlock_current_page [ 0.82763] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82767] Glyph 52: 44x39 (44x40)
+font D ttf.c:279 alloc_glyph_region [ 0.82769] Locking glyph region: 07B61610 380 0 44 40
+font D ttf.c:163 unlock_current_page [ 0.82774] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 0.82782] Glyph 35: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82784] Locking glyph region: 07B614A8 160 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82787] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 0.82791] Glyph 47: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.82793] Locking glyph region: 07B614A8 180 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.82800] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.86191] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.86196] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.86500] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.86504] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.86542] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.86546] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.86578] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.86583] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.87947] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.87956] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89226] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89233] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89304] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89309] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89341] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89346] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89375] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89379] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89409] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89413] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89442] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89446] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89477] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89483] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89518] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89522] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89549] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89554] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89580] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89584] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89619] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89623] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89650] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89655] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89705] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89709] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89956] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89963] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90548] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90554] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90832] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90838] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90991] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90999] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 3.72336] Glyph 66: 5x15 (8x16)
+font D ttf.c:279 alloc_glyph_region [ 3.72344] Locking glyph region: 07B614A8 200 0 8 16
+font D ttf.c:163 unlock_current_page [ 3.72351] Unlocking page: 07B614A8
+font D ttf.c:235 alloc_glyph_region [ 3.72364] Glyph 94: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 3.72369] Locking glyph region: 07B614A8 208 0 20 24
+font D ttf.c:163 unlock_current_page [ 3.72399] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 3.72439] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 3.72448] _al_d3d_sync_bitmap (video) ref count == 1
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 3.73936] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 3.73945] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 3.73949] 0.500000
+font D ttf.c:235 alloc_glyph_region [ 5.75694] Glyph 93: 19x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 5.75705] Locking glyph region: 07B614A8 228 0 20 24
+font D ttf.c:163 unlock_current_page [ 5.75718] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 5.75806] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 5.75816] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 6.39027] Glyph 95: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 6.39038] Locking glyph region: 07B614A8 248 0 20 24
+font D ttf.c:163 unlock_current_page [ 6.39051] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.39136] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.39146] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 6.90691] Glyph 96: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 6.90702] Locking glyph region: 07B614A8 268 0 20 24
+font D ttf.c:163 unlock_current_page [ 6.90715] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.90801] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.90811] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 7.52363] Glyph 98: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 7.52374] Locking glyph region: 07B614A8 288 0 20 24
+font D ttf.c:163 unlock_current_page [ 7.52387] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.52471] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.52480] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 8.09029] Glyph 99: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 8.09040] Locking glyph region: 07B614A8 308 0 20 24
+font D ttf.c:163 unlock_current_page [ 8.09053] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 8.09139] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 8.09148] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 8.72346] Glyph 101: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 8.72355] Locking glyph region: 07B614A8 328 0 20 24
+font D ttf.c:163 unlock_current_page [ 8.72366] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 8.72469] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 8.72479] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 11.62347] Glyph 97: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 11.62358] Locking glyph region: 07B614A8 348 0 20 24
+font D ttf.c:163 unlock_current_page [ 11.62370] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 11.62474] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 11.62485] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 12.99019] Glyph 100: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 12.99030] Locking glyph region: 07B614A8 368 0 20 24
+font D ttf.c:163 unlock_current_page [ 12.99043] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.99131] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.99140] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 39.70690] Glyph 102: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 39.70701] Locking glyph region: 07B614A8 388 0 20 24
+font D ttf.c:163 unlock_current_page [ 39.70713] Unlocking page: 07B614A8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 39.70819] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 39.70828] _al_d3d_sync_bitmap (video) ref count == 1
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 69.28940] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 69.28954] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 69.28960] 0.500000
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 123.55610] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 123.55623] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 123.55629] 0.500000
+font D ttf.c:235 alloc_glyph_region [ 123.55655] Glyph 39: 36x38 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 123.55664] Locking glyph region: 07B61610 424 0 36 40
+font D ttf.c:163 unlock_current_page [ 123.55682] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.55701] Glyph 45: 34x39 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 123.55709] Locking glyph region: 07B61610 460 0 36 40
+font D ttf.c:163 unlock_current_page [ 123.55846] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.55872] Glyph 36: 35x39 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 123.55880] Locking glyph region: 07B61610 496 0 36 40
+font D ttf.c:163 unlock_current_page [ 123.55898] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.55923] Glyph 48: 44x39 (44x40)
+font D ttf.c:279 alloc_glyph_region [ 123.55930] Locking glyph region: 07B61610 532 0 44 40
+font D ttf.c:163 unlock_current_page [ 123.55949] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.55970] Glyph 27: 14x27 (16x28)
+font D ttf.c:279 alloc_glyph_region [ 123.55978] Locking glyph region: 07B61610 576 0 16 28
+font D ttf.c:163 unlock_current_page [ 123.55990] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.56011] Glyph 19: 36x39 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 123.56018] Locking glyph region: 07B61610 592 0 36 40
+font D ttf.c:163 unlock_current_page [ 123.56035] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.56055] Glyph 20: 35x38 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 123.56063] Locking glyph region: 07B61610 628 0 36 40
+font D ttf.c:163 unlock_current_page [ 123.56080] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.56106] Glyph 26: 35x39 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 123.56113] Locking glyph region: 07B61610 664 0 36 40
+font D ttf.c:163 unlock_current_page [ 123.56130] Unlocking page: 07B61610
+font D ttf.c:235 alloc_glyph_region [ 123.56155] Glyph 17: 35x39 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 123.56162] Locking glyph region: 07B61610 700 0 36 40
+font D ttf.c:163 unlock_current_page [ 123.56193] Unlocking page: 07B61610
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 123.56300] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 123.56318] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 125.80629] Glyph 21: 38x39 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 125.80637] Locking glyph region: 07B61610 736 0 40 40
+font D ttf.c:163 unlock_current_page [ 125.80649] Unlocking page: 07B61610
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 125.80785] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 125.80798] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 130.33010] removed dtor for sample 00558CE0
+dtor D dtor.c:220 _al_unregister_destructor [ 130.33027] removed dtor for sample 00558D28
+dtor D dtor.c:220 _al_unregister_destructor [ 130.33037] removed dtor for sample 00558D70
+dtor D dtor.c:220 _al_unregister_destructor [ 130.33063] removed dtor for sample 00558E00
+dtor D dtor.c:220 _al_unregister_destructor [ 130.33612] removed dtor for queue 0D0A1D48
+dtor D dtor.c:220 _al_unregister_destructor [ 130.33974] removed dtor for timer 00598470
+d3d I d3d_disp.cpp:901 d3d_destroy_display [ 130.33991] destroying display 00519FC8 (current 00000000)
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.34205] converting display bitmap 07B61610 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.34514] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.34543] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.34551] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 130.35134] removed dtor for bitmap 07B61778
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.35350] converting display bitmap 07B614A8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.35431] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.35459] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.35469] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 130.35653] removed dtor for bitmap 07B61778
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.35959] converting display bitmap 07B61340 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.36124] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.36144] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.36153] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 130.36910] removed dtor for bitmap 07B61778
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.36991] converting display bitmap 07B611D8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.37240] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.37258] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.37264] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.38796] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.38804] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.38938] converting display bitmap 07B61070 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.39133] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.39145] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.39149] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 130.39735] removed dtor for bitmap 07B61778
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.39806] converting display bitmap 07AEDC88 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.39844] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.39855] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.39858] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.39956] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.39961] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.39970] converting display bitmap 005987B0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.39974] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.39983] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.39988] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40026] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40031] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40047] converting display bitmap 07AEDB20 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40053] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40064] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40069] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40097] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40101] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40108] converting display bitmap 005B4F60 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40112] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40119] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40123] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40150] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40155] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40162] converting display bitmap 07AED9B8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40168] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40176] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40180] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40207] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40211] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40218] converting display bitmap 005B49A8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40223] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40230] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40234] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40260] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40264] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40270] converting display bitmap 005A7A50 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40274] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40283] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40288] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40314] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40318] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40324] converting display bitmap 00598648 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40329] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40336] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40339] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40368] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40372] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40378] converting display bitmap 005AC480 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40384] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40391] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40395] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40427] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40431] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40439] converting display bitmap 005AC318 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40443] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40452] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40456] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40506] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40510] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40517] converting display bitmap 005B4BD0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40521] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40527] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40531] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40561] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40565] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40573] converting display bitmap 005B4DF8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40580] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40588] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40593] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.40624] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.40629] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.40637] converting display bitmap 005A2728 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.40941] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.40954] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.40958] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 130.41913] removed dtor for bitmap 07B61778
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.42017] converting display bitmap 07B11A58 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.42371] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.42387] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.42393] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 130.43446] removed dtor for bitmap 07B61778
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.43543] converting display bitmap 005B4840 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.43551] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.43561] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.43564] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.43651] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.43656] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.43663] converting display bitmap 07B11BC0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.43671] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.43678] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.43682] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.43716] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.43721] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 130.43729] converting display bitmap 005CB4B0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 130.43733] added dtor for bitmap 07B61778, func 0FBB2202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 130.43740] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 130.43743] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 130.43773] removed dtor for bitmap 07B61778
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 130.43778] d3d_destroy_bitmap: Release video texture failed.
+d3d D d3d_disp.cpp:885 d3d_destroy_display_internals [ 130.43793] waiting for display 00519FC8's thread to end
+d3d I d3d_disp.cpp:1549 d3d_display_thread_proc [ 130.44729] d3d display thread exits
+dtor D dtor.c:220 _al_unregister_destructor [ 130.44786] removed dtor for ttf_font 07B6AEA8
+dtor D dtor.c:220 _al_unregister_destructor [ 130.44826] removed dtor for ttf_font 07B6AF68
+dtor D dtor.c:220 _al_unregister_destructor [ 130.44952] removed dtor for bitmap 07B11A58
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45023] removed dtor for bitmap 005A2728
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45100] removed dtor for bitmap 005B4840
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45106] removed dtor for bitmap 07B11BC0
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45112] removed dtor for bitmap 005CB4B0
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45116] removed dtor for bitmap 07B61070
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45156] removed dtor for bitmap 07B611D8
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45276] removed dtor for bitmap 07B61340
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45318] removed dtor for bitmap 005A7A50
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45323] removed dtor for bitmap 005B49A8
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45328] removed dtor for bitmap 07AED9B8
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45333] removed dtor for bitmap 005B4F60
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45338] removed dtor for bitmap 07AEDB20
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45343] removed dtor for bitmap 005987B0
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45347] removed dtor for bitmap 07AEDC88
+dtor D dtor.c:115 _al_run_destructors [ 130.45363] calling dtor for bitmap 00598648, func 0FBB2202
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45367] removed dtor for bitmap 00598648
+dtor D dtor.c:115 _al_run_destructors [ 130.45372] calling dtor for bitmap 005AC480, func 0FBB2202
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45377] removed dtor for bitmap 005AC480
+dtor D dtor.c:115 _al_run_destructors [ 130.45382] calling dtor for bitmap 005AC318, func 0FBB2202
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45386] removed dtor for bitmap 005AC318
+dtor D dtor.c:115 _al_run_destructors [ 130.45391] calling dtor for bitmap 005B4BD0, func 0FBB2202
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45396] removed dtor for bitmap 005B4BD0
+dtor D dtor.c:115 _al_run_destructors [ 130.45401] calling dtor for bitmap 005B4DF8, func 0FBB2202
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45405] removed dtor for bitmap 005B4DF8
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45411] removed dtor for sample_instance 00586AF0
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45416] removed dtor for sample_instance 00598368
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45421] removed dtor for sample_instance 00598540
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45426] removed dtor for sample_instance 00598A30
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45430] removed dtor for mixer 0056CCE0
+audio-dsound D dsound.cpp:509 _dsound_stop_voice [ 130.45435] Stopping voice
+audio-dsound D dsound.cpp:526 _dsound_stop_voice [ 130.45439] Joining thread
+audio-dsound D dsound.cpp:532 _dsound_stop_voice [ 130.45526] Joined thread
+audio-dsound D dsound.cpp:534 _dsound_stop_voice [ 130.45530] Destroying thread
+audio-dsound D dsound.cpp:536 _dsound_stop_voice [ 130.45534] Thread destroyed
+audio-dsound D dsound.cpp:543 _dsound_stop_voice [ 130.45537] Releasing buffer
+audio-dsound I dsound.cpp:547 _dsound_stop_voice [ 130.45540] Voice stopped
+dtor D dtor.c:220 _al_unregister_destructor [ 130.45551] removed dtor for voice 00512868
+audio-dsound D dsound.cpp:359 _dsound_deallocate_voice [ 130.45556] Deallocating voice
+audio-dsound D dsound.cpp:364 _dsound_deallocate_voice [ 130.45559] Deallocated voice
+audio-dsound D dsound.cpp:275 _dsound_close [ 130.45563] Releasing device
+audio-dsound D dsound.cpp:277 _dsound_close [ 130.46221] Released device
+audio-dsound I dsound.cpp:278 _dsound_close [ 130.46226] DirectSound closed

File Metadata

Mime Type
text/x-diff
Expires
Tue, Jun 16, 12:17 AM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
70761
Default Alt Text
(217 KB)

Event Timeline