Page Menu
Home
Phabricator (Chris)
Search
Configure Global Search
Log In
Files
F134595
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
241 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/Barrier.cpp b/Barrier.cpp
index e69de29..c4d2f3a 100644
--- a/Barrier.cpp
+++ b/Barrier.cpp
@@ -0,0 +1,23 @@
+#include "Barrier.h"
+
+using namespace std;
+
+void Barrier::SetBarrierpos(int x, int y)
+{
+ x_pos = x;
+ y_pos = y;
+
+}
+
+void Barrier::SetBarrierBound(int x, int y, int h)
+{
+ Bright = x;
+ Bleft = y;
+ BHeight = h;
+}
+
+void Barrier::setLife(int l)
+{
+ life_points = l;
+}
+Barrier::Barrier() {}
\ No newline at end of file
diff --git a/Barrier.h b/Barrier.h
index e69de29..5b462be 100644
--- a/Barrier.h
+++ b/Barrier.h
@@ -0,0 +1,22 @@
+#pragma once
+using namespace std;
+class Barrier
+{
+
+public:
+
+ Barrier();
+ void SetBarrierpos(int x, int y);
+ void SetBarrierBound(int x, int y, int h);
+ void setLife(int l);
+
+ int x_pos;
+ int y_pos;
+ int life_points;
+ bool active;
+
+ int BHeight;
+ int Bright;
+ int Bleft;
+
+};
\ No newline at end of file
diff --git a/SpaceInvadersTest.vcxproj b/SpaceInvadersTest.vcxproj
index df0c1e7..d9aa136 100644
--- a/SpaceInvadersTest.vcxproj
+++ b/SpaceInvadersTest.vcxproj
@@ -1,109 +1,111 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{70C476C5-EF01-453C-9E01-6FACFE08D371}</ProjectGuid>
<RootNamespace>SpaceInvadersTest</RootNamespace>
<ProjectName>DarthInvaders</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Allegro_AddonImage>true</Allegro_AddonImage>
<Allegro_AddonTTF>true</Allegro_AddonTTF>
<Allegro_AddonPrimitives>true</Allegro_AddonPrimitives>
<Allegro_AddonDialog>true</Allegro_AddonDialog>
<Allegro_AddonFont>true</Allegro_AddonFont>
<Allegro_AddonColor>true</Allegro_AddonColor>
<Allegro_LibraryType>DynamicDebug</Allegro_LibraryType>
<Allegro_AddonAudio>true</Allegro_AddonAudio>
<Allegro_AddonAcodec>true</Allegro_AddonAcodec>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="BackGround.cpp" />
+ <ClCompile Include="Barrier.cpp" />
<ClCompile Include="Global.cpp" />
<ClCompile Include="Spaceship.cpp" />
<ClCompile Include="Bullet.cpp" />
<ClCompile Include="Enemy.cpp" />
<ClCompile Include="Test.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="BackGround.h" />
+ <ClInclude Include="Barrier.h" />
<ClInclude Include="Spaceship.h" />
<ClInclude Include="Bullet.h" />
<ClInclude Include="Enemy.h" />
<ClInclude Include="Global.h" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="packages\AllegroDeps.1.4.0.0\build\native\AllegroDeps.targets" Condition="Exists('packages\AllegroDeps.1.4.0.0\build\native\AllegroDeps.targets')" />
<Import Project="packages\Allegro.5.2.0.0\build\native\Allegro.targets" Condition="Exists('packages\Allegro.5.2.0.0\build\native\Allegro.targets')" />
</ImportGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('packages\AllegroDeps.1.4.0.0\build\native\AllegroDeps.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\AllegroDeps.1.4.0.0\build\native\AllegroDeps.targets'))" />
<Error Condition="!Exists('packages\Allegro.5.2.0.0\build\native\Allegro.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Allegro.5.2.0.0\build\native\Allegro.targets'))" />
</Target>
</Project>
\ No newline at end of file
diff --git a/SpaceInvadersTest.vcxproj.filters b/SpaceInvadersTest.vcxproj.filters
index 2abbea7..049bf97 100644
--- a/SpaceInvadersTest.vcxproj.filters
+++ b/SpaceInvadersTest.vcxproj.filters
@@ -1,59 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
- <Filter Include="Source Files">
- <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
- <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
- </Filter>
- <Filter Include="Header Files">
- <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
- <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
- </Filter>
- <Filter Include="Resource Files">
- <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
- <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
- </Filter>
+ <ClCompile Include="BackGround.cpp" />
+ <ClCompile Include="Global.cpp" />
+ <ClCompile Include="Spaceship.cpp" />
+ <ClCompile Include="Bullet.cpp" />
+ <ClCompile Include="Enemy.cpp" />
+ <ClCompile Include="Test.cpp" />
+ <ClCompile Include="Barrier.cpp" />
</ItemGroup>
<ItemGroup>
- <ClCompile Include="Test.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="Bullet.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="Spaceship.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="Global.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
-<<<<<<< HEAD
- <ClCompile Include="BackGround.cpp">
- <Filter>Source Files</Filter>
-=======
- <ClCompile Include="Enemy.cpp">
- <Filter>Resource Files</Filter>
->>>>>>> f5ae0e3cac578ccd6caab1a05de932db256ae7d9
- </ClCompile>
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include="Enemy.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="Bullet.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="Global.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="Spaceship.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClInclude Include="BackGround.h">
- <Filter>Header Files</Filter>
- </ClInclude>
+ <ClInclude Include="BackGround.h" />
+ <ClInclude Include="Spaceship.h" />
+ <ClInclude Include="Bullet.h" />
+ <ClInclude Include="Enemy.h" />
+ <ClInclude Include="Global.h" />
+ <ClInclude Include="Barrier.h" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>
\ No newline at end of file
diff --git a/Test.cpp b/Test.cpp
index 0ca5b62..937e8d5 100644
--- a/Test.cpp
+++ b/Test.cpp
@@ -1,632 +1,807 @@
#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();
//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 (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();
+ 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
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 (gameState == 1)
{
if (GETKEY.type == ALLEGRO_EVENT_KEY_DOWN)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_ESCAPE:
gameState = 3;
break;
case ALLEGRO_KEY_SPACE:
gameState = 2;
break;
}
}
}
if (gameState == 2)
{
if (GETKEY.type == ALLEGRO_EVENT_KEY_DOWN)
{
switch (GETKEY.keyboard.keycode)
{
case ALLEGRO_KEY_ESCAPE:
gameState = 3;
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, "AMSST 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 ESCAPE");
}
else if (gameState ==2)
{
+
+ 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);
+
DrawBackground(BG);
DrawBackground(MG);
DrawBackground(FG);
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_bitmap(Game);
al_destroy_bitmap(MENU);
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_bitmap(picEnemy);
al_destroy_bitmap(picShip);
al_destroy_bitmap(picBullet);
al_destroy_font(font25);
al_destroy_font(font50);
for (int i = 0; i < 7; i++)
al_destroy_bitmap(picHealth[i]);
al_destroy_bitmap(bgImage);
al_destroy_bitmap(mgImage);
al_destroy_bitmap(fgImage);
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);
-}
\ No newline at end of file
+}
+
+
+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()
+{
+ int i = 0;
+ for (; i<3; i++)
+
+
+ if (Asteroid[i].active == true)
+ {
+ if (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()
+{
+ int i = 0;
+ for (; i < 3; i++)
+ {
+
+ if (Asteroid[i].active == true)
+ {
+ if (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))
+ {
+
+ playerBullet.status = 0;
+
+ }
+ }
+ }
+ }
+
+}
+
+void EnemyReachEnd()
+{
+ int i = 0;
+ int j = 0;
+
+ for (i = 0; i < NUM_COLUMNS; i++)
+ for (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;
+ }
+ }
+ }
+}
diff --git a/allegro.log b/allegro.log
index da0b0a5..c435850 100644
--- a/allegro.log
+++ b/allegro.log
@@ -1,881 +1,1019 @@
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.00000] opening C:\Users\Akshay\Source\Repos\DarthInvaders\Debug\allegro5.cfg r
-system D wsystem.c:721 maybe_parent_dir [ 0.00000] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders\
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.00000] opening C:\Users\Akshay\Source\Repos\DarthInvaders3\Debug\allegro5.cfg r
+system D wsystem.c:721 maybe_parent_dir [ 0.00000] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders3\
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\DarthInvaders\
+system D wsystem.c:721 maybe_parent_dir [ 0.00000] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders3\
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.00023] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders\
-system D wsystem.c:771 _al_win_safe_load_library [ 0.00261] PathFindOnPath found: C:\Windows\system32\d3d9.dll
-system D wsystem.c:682 load_library_at_path [ 0.00264] Calling LoadLibrary C:\Windows\system32\d3d9.dll
-system I wsystem.c:685 load_library_at_path [ 0.00711] Loaded C:\Windows\system32\d3d9.dll
-d3d I d3d_disp.cpp:674 d3d_init_display [ 0.01810] Render-to-texture: 1
-d3d I d3d_disp.cpp:1769 d3d_create_display_locked [ 0.01857] faux_fullscreen=0
-d3d D d3d_disp.cpp:1770 d3d_create_display_locked [ 0.01860] al_display=00789FD0
-d3d D d3d_disp.cpp:1771 d3d_create_display_locked [ 0.01861] al_display->vt=00789A08
-d3d I d3d_display_formats.cpp:144 _al_d3d_generate_display_format_list [ 0.01882] found 64 format combinations
-display D display_settings.c:212 debug_display_settings [ 0.01886] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01888] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01890] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01892] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01893] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01895] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01896] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01898] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01900] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01902] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01903] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01905] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01906] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01908] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01909] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01911] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01915] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01917] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01919] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01921] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01922] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01924] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01925] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01927] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01932] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01935] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01936] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01938] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01939] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01941] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01943] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.01945] Score is : 897
-display D display_settings.c:212 debug_display_settings [ 0.01946] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01948] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01949] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01951] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01953] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01955] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01956] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01958] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01960] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01961] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01963] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01965] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01966] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01968] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01970] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01972] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01973] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01975] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01977] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01979] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01980] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01982] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01983] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01985] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01987] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01989] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01990] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01992] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01993] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01995] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.01997] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.01999] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02000] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02002] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02003] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02005] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02006] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02008] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02010] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02011] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02013] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02015] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02016] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02018] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02019] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02021] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02023] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02024] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02026] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02028] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02029] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02031] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02032] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02034] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02035] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02037] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02039] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02041] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02042] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02044] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02045] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02047] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02048] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:527 _al_score_display_settings [ 0.02050] Score is : 769
-display D display_settings.c:212 debug_display_settings [ 0.02052] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02053] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02055] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02057] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02058] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02060] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02061] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02063] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02065] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02067] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02068] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02070] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02071] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02073] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02076] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02078] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02080] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02081] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02083] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02085] Single Buffer requirement not met.
-display D display_settings.c:212 debug_display_settings [ 0.02086] color: 16 (rgba 5650), depth: 24, stencil: 8, 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: 16 (rgba 5650), depth: 24, stencil: 8, 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: 16 (rgba 5650), depth: 24, stencil: 0, 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: 16 (rgba 5650), depth: 24, stencil: 0, 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: 16 (rgba 5650), depth: 16, 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: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
-display D display_settings.c:398 _al_score_display_settings [ 0.02105] Single Buffer requirement not met.
-d3d D d3d_disp.cpp:1669 d3d_create_display_internals [ 0.02107] Trying format 0.
-d3d I d3d_disp.cpp:1344 d3d_display_thread_proc [ 0.08578] Chose a display format: 23
-d3d I d3d_disp.cpp:1413 d3d_display_thread_proc [ 0.08653] Normal window.
-d3d I d3d_disp.cpp:781 d3d_create_device [ 0.11045] Using no depth stencil buffer
-d3d D d3d_disp.cpp:839 d3d_create_device [ 0.11994] BeginScene succeeded in create_device
-d3d D d3d_disp.cpp:847 d3d_create_device [ 0.12002] Success
-d3d D d3d_disp.cpp:1692 d3d_create_display_internals [ 0.12028] Resumed after wait.
-d3d I d3d_disp.cpp:1725 d3d_create_display_internals [ 0.12035] Format 0 succeeded.
-d3d D d3d_disp.cpp:1756 d3d_create_display_internals [ 0.12048] Returning d3d_display: 00789FD0
-d3d D d3d_disp.cpp:1781 d3d_create_display_locked [ 0.12053] al_display=00789FD0
-d3d D d3d_disp.cpp:1782 d3d_create_display_locked [ 0.12058] al_display->vt=00789A08
-system D wsystem.c:721 maybe_parent_dir [ 0.12085] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders\
-system D wsystem.c:771 _al_win_safe_load_library [ 0.12239] PathFindOnPath found: C:\Windows\system32\d3dx9_43.dll
-system D wsystem.c:682 load_library_at_path [ 0.12245] Calling LoadLibrary C:\Windows\system32\d3dx9_43.dll
-system I wsystem.c:685 load_library_at_path [ 0.12834] Loaded C:\Windows\system32\d3dx9_43.dll
-d3dx9 I d3d_d3dx9.cpp:88 _imp_load_d3dx9_module_version [ 0.12841] Module "d3dx9_43.dll" loaded.
-audio-dsound I dsound.cpp:249 _dsound_open [ 0.12992] Starting DirectSound...
-audio-dsound D dsound.cpp:258 _dsound_open [ 0.15840] DirectSoundCreate8 succeeded
-audio I audio.c:347 do_install_audio [ 0.15911] Using DirectSound driver
-audio-dsound D dsound.cpp:290 _dsound_allocate_voice [ 0.15918] Allocating voice
-audio-dsound D dsound.cpp:349 _dsound_allocate_voice [ 0.15920] Allocated voice
-dtor D dtor.c:187 _al_register_destructor [ 0.15923] added dtor for voice 00782DC0, func 0F03117C
-dtor D dtor.c:187 _al_register_destructor [ 0.15926] added dtor for mixer 007DCBC8, func 0F0311F9
-audio-dsound D dsound.cpp:446 _dsound_start_voice [ 0.15930] Starting voice
-audio-dsound D dsound.cpp:474 _dsound_start_voice [ 0.15931] CreateSoundBuffer
-audio-dsound D dsound.cpp:483 _dsound_start_voice [ 0.16303] CreateSoundBuffer succeeded
-audio-dsound D dsound.cpp:489 _dsound_start_voice [ 0.16365] Starting _dsound_update thread
-audio-dsound I dsound.cpp:499 _dsound_start_voice [ 0.16403] Voice started
-dtor D dtor.c:187 _al_register_destructor [ 0.16407] added dtor for sample_instance 007F6490, func 0F0314BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.16412] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16415]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16416]
-dtor D dtor.c:187 _al_register_destructor [ 0.16419] added dtor for sample_instance 007FF088, func 0F0314BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.16431] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16433]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16436]
-dtor D dtor.c:187 _al_register_destructor [ 0.16438] added dtor for sample_instance 00808508, func 0F0314BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.16441] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16443]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16445]
-dtor D dtor.c:187 _al_register_destructor [ 0.16447] added dtor for sample_instance 00808A88, func 0F0314BA
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.16450] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16452]
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.16454]
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.16456] Loading sample XWing-Laser.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.16458] opening XWing-Laser.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.16498] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.16501] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.16503] rate 22050
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.16505] total_samples 9153
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.16508] total_size 18306
-dtor D dtor.c:187 _al_register_destructor [ 0.16752] added dtor for sample 007C8C68, func 0F0313ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.16760] Loading sample Blast.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.16764] opening Blast.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.16806] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.16808] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.16811] rate 24000
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.16813] total_samples 52884
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.16816] total_size 105768
-dtor D dtor.c:187 _al_register_destructor [ 0.17219] added dtor for sample 007C8CB0, func 0F0313ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.17227] Loading sample xwing.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.17230] opening xwing.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.17268] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.17271] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.17274] rate 11025
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.17276] total_samples 37250
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.17278] total_size 74500
-dtor D dtor.c:187 _al_register_destructor [ 0.17604] added dtor for sample 007C8CF8, func 0F0313ED
-acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.17609] Loading sample Star_Wars.ogg.
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.17612] opening Star_Wars.ogg rb
-acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.17669] channels 1
-acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.17672] word_size 2
-acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.17674] rate 22050
-acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.17676] total_samples 7172901
-acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.17678] total_size 14345802
-dtor D dtor.c:187 _al_register_destructor [ 0.44630] added dtor for sample 007C8D88, func 0F0313ED
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.44643] opening Lazer.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44672] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44676] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44678] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44680] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44682] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44684] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44686] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44688] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44691] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44693] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44695] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44697] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44699] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.44715] added dtor for bitmap 062D7A40, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.44745] opening player1.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44759] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44762] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44764] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44766] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44768] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44770] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44773] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44775] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44777] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44779] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44782] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44784] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44786] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.44799] added dtor for bitmap 00813858, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.44857] opening enemy.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44872] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44875] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44877] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44879] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44882] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44884] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44886] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44888] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44890] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44893] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44895] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44898] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44900] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.44913] added dtor for bitmap 00813B88, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.44944] opening Goodpic.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44955] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44958] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44960] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44962] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44964] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44966] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44968] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44970] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44972] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44974] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44976] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44982] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44985] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.45094] added dtor for bitmap 008136F0, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.50574] opening star_sky.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50593] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50595] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50596] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50598] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50599] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50600] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50601] Fake format
+system D wsystem.c:721 maybe_parent_dir [ 0.00025] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders3\
+system D wsystem.c:771 _al_win_safe_load_library [ 0.00054] PathFindOnPath found: C:\Windows\system32\d3d9.dll
+system D wsystem.c:682 load_library_at_path [ 0.00058] Calling LoadLibrary C:\Windows\system32\d3d9.dll
+system I wsystem.c:685 load_library_at_path [ 0.01743] Loaded C:\Windows\system32\d3d9.dll
+d3d I d3d_disp.cpp:674 d3d_init_display [ 0.03403] Render-to-texture: 1
+d3d I d3d_disp.cpp:1769 d3d_create_display_locked [ 0.03491] faux_fullscreen=0
+d3d D d3d_disp.cpp:1770 d3d_create_display_locked [ 0.03495] al_display=00849FE0
+d3d D d3d_disp.cpp:1771 d3d_create_display_locked [ 0.03497] al_display->vt=00849A18
+d3d I d3d_display_formats.cpp:144 _al_d3d_generate_display_format_list [ 0.03529] found 64 format combinations
+display D display_settings.c:212 debug_display_settings [ 0.03533] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03537] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03539] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03542] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03545] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03548] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03550] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03553] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03555] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03558] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03560] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03563] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03565] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03568] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03570] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03573] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03579] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03582] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03584] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03588] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03590] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03593] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03595] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03598] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03600] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03604] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03606] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03609] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03611] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03614] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03617] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03619] Score is : 897
+display D display_settings.c:212 debug_display_settings [ 0.03622] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03624] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03627] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03630] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03632] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03635] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03638] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03641] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03643] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03646] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03649] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03652] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03654] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03658] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03660] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03663] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03666] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03669] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03671] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03674] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03677] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03680] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03682] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03686] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03689] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03692] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03695] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03699] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03702] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03707] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03710] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03714] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03718] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03721] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03723] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03726] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03728] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03731] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03733] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03737] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03739] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03742] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03744] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03747] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03749] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03752] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03754] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03757] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03759] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03762] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03764] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03767] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03769] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03773] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03775] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03777] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03779] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03782] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03784] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03787] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03788] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03791] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03793] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:527 _al_score_display_settings [ 0.03796] Score is : 769
+display D display_settings.c:212 debug_display_settings [ 0.03798] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03801] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03803] color: 32 (rgba 8880), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03806] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03808] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03812] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03814] color: 32 (rgba 8880), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03817] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03819] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03822] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03824] color: 32 (rgba 8880), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03827] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03829] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03832] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03836] color: 32 (rgba 8880), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03839] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03841] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03844] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03846] color: 16 (rgba 5650), depth: 0, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03849] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03851] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03853] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03855] color: 16 (rgba 5650), depth: 24, stencil: 8, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03858] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03860] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03863] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03865] color: 16 (rgba 5650), depth: 24, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03868] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03870] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03872] Single Buffer requirement not met.
+display D display_settings.c:212 debug_display_settings [ 0.03874] color: 16 (rgba 5650), depth: 16, stencil: 0, acc: 0000, samples: 0/0
+display D display_settings.c:398 _al_score_display_settings [ 0.03877] Single Buffer requirement not met.
+d3d D d3d_disp.cpp:1669 d3d_create_display_internals [ 0.03881] Trying format 0.
+d3d I d3d_disp.cpp:1344 d3d_display_thread_proc [ 0.04084] Chose a display format: 23
+d3d I d3d_disp.cpp:1413 d3d_display_thread_proc [ 0.04089] Normal window.
+d3d I d3d_disp.cpp:781 d3d_create_device [ 0.05184] Using no depth stencil buffer
+d3d D d3d_disp.cpp:839 d3d_create_device [ 0.06421] BeginScene succeeded in create_device
+d3d D d3d_disp.cpp:847 d3d_create_device [ 0.06426] Success
+d3d D d3d_disp.cpp:1692 d3d_create_display_internals [ 0.06430] Resumed after wait.
+d3d I d3d_disp.cpp:1725 d3d_create_display_internals [ 0.06435] Format 0 succeeded.
+d3d D d3d_disp.cpp:1756 d3d_create_display_internals [ 0.06439] Returning d3d_display: 00849FE0
+d3d D d3d_disp.cpp:1781 d3d_create_display_locked [ 0.06441] al_display=00849FE0
+d3d D d3d_disp.cpp:1782 d3d_create_display_locked [ 0.06443] al_display->vt=00849A18
+system D wsystem.c:721 maybe_parent_dir [ 0.06458] Also searching C:\Users\Akshay\Source\Repos\DarthInvaders3\
+system D wsystem.c:771 _al_win_safe_load_library [ 0.06474] PathFindOnPath found: C:\Windows\system32\d3dx9_43.dll
+system D wsystem.c:682 load_library_at_path [ 0.06477] Calling LoadLibrary C:\Windows\system32\d3dx9_43.dll
+system I wsystem.c:685 load_library_at_path [ 0.06893] Loaded C:\Windows\system32\d3dx9_43.dll
+d3dx9 I d3d_d3dx9.cpp:88 _imp_load_d3dx9_module_version [ 0.06900] Module "d3dx9_43.dll" loaded.
+audio-dsound I dsound.cpp:249 _dsound_open [ 0.07004] Starting DirectSound...
+audio-dsound D dsound.cpp:258 _dsound_open [ 0.11626] DirectSoundCreate8 succeeded
+audio I audio.c:347 do_install_audio [ 0.11744] Using DirectSound driver
+audio-dsound D dsound.cpp:290 _dsound_allocate_voice [ 0.11761] Allocating voice
+audio-dsound D dsound.cpp:349 _dsound_allocate_voice [ 0.11766] Allocated voice
+dtor D dtor.c:187 _al_register_destructor [ 0.11771] added dtor for voice 00842DB0, func 0F9F117C
+dtor D dtor.c:187 _al_register_destructor [ 0.11777] added dtor for mixer 008B75C8, func 0F9F11F9
+audio-dsound D dsound.cpp:446 _dsound_start_voice [ 0.11783] Starting voice
+audio-dsound D dsound.cpp:474 _dsound_start_voice [ 0.11787] CreateSoundBuffer
+audio-dsound D dsound.cpp:483 _dsound_start_voice [ 0.11990] CreateSoundBuffer succeeded
+audio-dsound D dsound.cpp:489 _dsound_start_voice [ 0.11997] Starting _dsound_update thread
+audio-dsound I dsound.cpp:499 _dsound_start_voice [ 0.12009] Voice started
+dtor D dtor.c:187 _al_register_destructor [ 0.12013] added dtor for sample_instance 008AB160, func 0F9F14BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.12017] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12019]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12021]
+dtor D dtor.c:187 _al_register_destructor [ 0.12024] added dtor for sample_instance 008B76F0, func 0F9F14BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.12027] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12029]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12032]
+dtor D dtor.c:187 _al_register_destructor [ 0.12034] added dtor for sample_instance 008B77F8, func 0F9F14BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.12037] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12039]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12041]
+dtor D dtor.c:187 _al_register_destructor [ 0.12044] added dtor for sample_instance 008B7990, func 0F9F14BA
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.12047] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12050]
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.12051]
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.12054] Loading sample XWing-Laser.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.12056] opening XWing-Laser.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.12159] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.12163] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.12165] rate 22050
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.12167] total_samples 9153
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.12169] total_size 18306
+dtor D dtor.c:187 _al_register_destructor [ 0.12378] added dtor for sample 00888CA0, func 0F9F13ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.12387] Loading sample Blast.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.12390] opening Blast.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.12438] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.12442] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.12444] rate 24000
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.12447] total_samples 52884
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.12450] total_size 105768
+dtor D dtor.c:187 _al_register_destructor [ 0.12834] added dtor for sample 00888CE8, func 0F9F13ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.12841] Loading sample xwing.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.12845] opening xwing.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.12884] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.12887] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.12890] rate 11025
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.12892] total_samples 37250
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.12895] total_size 74500
+dtor D dtor.c:187 _al_register_destructor [ 0.13239] added dtor for sample 00888D30, func 0F9F13ED
+acodec I ogg.c:204 _al_load_ogg_vorbis [ 0.13246] Loading sample Star_Wars.ogg.
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.13249] opening Star_Wars.ogg rb
+acodec D ogg.c:263 _al_load_ogg_vorbis_f [ 0.13319] channels 1
+acodec D ogg.c:264 _al_load_ogg_vorbis_f [ 0.13323] word_size 2
+acodec D ogg.c:265 _al_load_ogg_vorbis_f [ 0.13325] rate 22050
+acodec D ogg.c:266 _al_load_ogg_vorbis_f [ 0.13328] total_samples 7172901
+acodec D ogg.c:267 _al_load_ogg_vorbis_f [ 0.13330] total_size 14345802
+dtor D dtor.c:187 _al_register_destructor [ 0.44218] added dtor for sample 00888DC0, func 0F9F13ED
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.44226] opening Lazer.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44239] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44241] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44243] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44244] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44246] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44247] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44249] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44250] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44251] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44253] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44254] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44256] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44257] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.44268] added dtor for bitmap 07911CC8, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.44289] opening player1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44297] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44299] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44301] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44303] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44304] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44306] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44307] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44309] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44310] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44312] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44314] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44315] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44317] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.44325] added dtor for bitmap 008F3870, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.44368] opening enemy.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44376] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44378] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44379] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44380] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44382] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44383] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44384] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44386] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44387] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44388] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44390] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44391] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44392] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.44402] added dtor for bitmap 008F3BA0, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.44434] opening Goodpic.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44445] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44448] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44450] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44453] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44455] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44457] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44459] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44461] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.44463] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.44466] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.44468] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.44474] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.44477] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.44648] added dtor for bitmap 008F3D08, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.50586] opening star_sky.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50603] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50604] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.50605] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.50607] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.50608] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.50610] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.50691] added dtor for bitmap 0083B3B8, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.54674] opening 1.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54693] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54696] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54698] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54701] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54703] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54705] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54707] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54709] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54711] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.54714] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.54716] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.54718] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.54721] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.54734] added dtor for bitmap 008261D0, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.55040] opening 2.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55059] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55062] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55064] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55066] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55068] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55070] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55072] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55074] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55076] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.55078] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.55080] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55082] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55084] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.55098] added dtor for bitmap 00826338, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.55118] opening 3.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55130] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55132] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55134] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55137] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55139] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55141] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55143] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55145] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55147] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.55149] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.55151] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55154] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55156] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.55167] added dtor for bitmap 0083FE88, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.55185] opening 4.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55197] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55200] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55202] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55204] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55206] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55208] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55210] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55212] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55214] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.55216] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.55218] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55221] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55223] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.55233] added dtor for bitmap 00813E70, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.55250] opening 5.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55261] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55264] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55266] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55268] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55270] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55272] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55274] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55276] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55283] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.55286] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.55290] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55293] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55295] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.55306] added dtor for bitmap 00826590, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.55325] opening 6.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55338] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55342] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55344] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55346] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55348] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55350] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55352] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55354] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55356] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.55358] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.55360] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55363] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55365] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.55374] added dtor for bitmap 00825F90, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.55390] opening blank.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55401] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55404] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55406] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55408] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55410] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55412] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55414] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55416] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55418] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.55420] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.55422] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55424] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55426] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.55448] added dtor for bitmap 00813CF0, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.55694] opening starBG.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55717] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55720] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55722] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55724] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55727] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55729] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55731] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55733] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.55735] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.55737] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.55740] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55742] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55744] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.55810] added dtor for bitmap 062CDE30, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.57824] opening starMG.jpg rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57856] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57859] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57862] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57864] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57866] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57869] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50606] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50608] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50610] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50612] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50614] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50616] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50617] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.50618] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.50620] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.50621] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.50623] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.50625] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.50799] added dtor for bitmap 008FF708, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.54954] opening B4.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54976] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54979] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54981] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54983] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54985] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54987] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54989] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54991] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.54993] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.54995] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.54998] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.55000] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.55002] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.55015] added dtor for bitmap 008C14E8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.55357] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.55363] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.56170] opening B3.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56185] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56187] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56189] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56192] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56194] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56197] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56199] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56200] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56202] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.56235] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.56239] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.56242] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.56244] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.56289] added dtor for bitmap 008C1650, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.56352] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.56358] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.56541] opening B2.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56557] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56560] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56562] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56564] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56577] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56580] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56582] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56584] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56586] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.56588] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.56590] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.56593] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.56595] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.56638] added dtor for bitmap 008D5850, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.56697] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.56703] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.56872] opening B1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56889] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56892] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56894] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56896] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56898] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56900] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56902] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56904] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.56906] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.56909] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.56912] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.56914] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.56917] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.56931] added dtor for bitmap 008D59B8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.57010] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.57015] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.57184] opening B0.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57200] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57203] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57205] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57206] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57208] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57210] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57212] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57214] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57215] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.57217] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.57219] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.57221] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.57223] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.57235] added dtor for bitmap 008D5C10, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.57286] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.57291] _al_d3d_sync_bitmap (video) ref count == 1
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.57495] opening 1.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57512] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57515] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57517] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57519] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57522] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57524] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57526] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57528] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57530] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.57533] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.57535] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.57537] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.57539] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.57552] added dtor for bitmap 008D5FB8, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.57574] opening 2.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57586] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57589] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57591] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57593] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57595] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57597] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57599] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57601] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57618] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.57621] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.57624] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.57627] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.57631] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.57643] added dtor for bitmap 008C12D8, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.57704] opening 3.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57738] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57741] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57744] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57746] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57748] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57750] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57752] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57754] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57756] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.57757] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.57760] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.57762] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.57764] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.57794] added dtor for bitmap 008DAA90, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.57850] opening 4.png rb
d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57871] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57873] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57874] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.57876] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.57878] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.57880] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.57883] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.58041] added dtor for bitmap 00813320, func 0FB82202
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.60032] opening starFG.png rb
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60051] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60054] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60055] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60056] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60058] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60059] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60060] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60061] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60063] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.60065] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.60066] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.60067] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.60069] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.60128] added dtor for bitmap 00826830, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.63917] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.63927] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65339] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65345] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65399] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65403] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65447] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65450] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65489] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65492] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65528] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65532] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65566] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65570] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66718] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66725] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66918] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66924] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67009] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67014] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67044] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67047] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89541] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89547] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89550] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89552] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89554] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89556] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89558] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89561] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.89563] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.89565] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.89567] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.89570] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.89572] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.89584] added dtor for bitmap 00826998, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89944] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89950] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 0.90087] removed dtor for bitmap 00826998
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.90090] d3d_destroy_bitmap: Release video texture failed.
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90144] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90147] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90150] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90152] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90154] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90156] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90158] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90161] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.90163] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.90165] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.90167] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.90169] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.90171] Chose bitmap format 9
-dtor D dtor.c:187 _al_register_destructor [ 0.90185] added dtor for bitmap 00826998, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90369] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90378] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 0.90560] removed dtor for bitmap 00826998
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.90565] d3d_destroy_bitmap: Release video texture failed.
-dtor D dtor.c:187 _al_register_destructor [ 0.90644] added dtor for timer 00808998, func 0FB81730
-dtor D dtor.c:187 _al_register_destructor [ 0.90650] added dtor for queue 00818B40, func 0FB82351
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.90698] opening Legacy.ttf rb
-font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.90740] Font Legacy.ttf loaded with pixel size 0 x 38.
-font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.90744] ascent=29.0, descent=-9.0, height=38.0
-dtor D dtor.c:187 _al_register_destructor [ 0.90747] added dtor for ttf_font 0B6A9320, func 0F2C1055
-stdio D file_stdio.c:105 file_stdio_fopen [ 0.90750] opening STARWARS.TTF rb
-font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.90775] Font STARWARS.TTF loaded with pixel size 0 x 55.
-font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.90779] ascent=37.0, descent=-11.0, height=46.0
-dtor D dtor.c:187 _al_register_destructor [ 0.90782] added dtor for ttf_font 0B6A91A0, func 0F2C1055
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.90785] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.90788] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.90790] 0.500000
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93862] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93867] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93869] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93871] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93873] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93875] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93877] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93879] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.93881] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.93883] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.93885] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.93888] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.93890] Chose bitmap format 9
-font D ttf.c:235 alloc_glyph_region [ 0.93935] Glyph 33: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.93940] Locking glyph region: 0631F920 0 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.93985] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 0.93994] Glyph 45: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.93998] Locking glyph region: 0631F920 20 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94003] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 0.94009] Glyph 51: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94012] Locking glyph region: 0631F920 40 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94017] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 0.94023] Glyph 52: 17x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94026] Locking glyph region: 0631F920 60 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94031] Unlocking page: 0631F920
-font D ttf.c:437 cache_glyph [ 0.94035] Glyph 108 has zero size.
-font D ttf.c:235 alloc_glyph_region [ 0.94041] Glyph 48: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94044] Locking glyph region: 0631F920 80 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94048] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 0.94054] Glyph 50: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94057] Locking glyph region: 0631F920 100 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94062] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 0.94068] Glyph 37: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94071] Locking glyph region: 0631F920 120 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94076] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 0.94082] Glyph 46: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94085] Locking glyph region: 0631F920 140 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94090] Unlocking page: 0631F920
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94106] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94109] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94111] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94113] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94116] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94118] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94120] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94122] Fake format
-d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.94124] Fake format
-d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.94126] Alpha doesn't match
-d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.94128] Adapter format is 23
-d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.94131] Found a format
-d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.94133] Chose bitmap format 9
-font D ttf.c:235 alloc_glyph_region [ 0.94267] Glyph 37: 39x38 (40x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94274] Locking glyph region: 0631FC38 0 0 40 40
-font D ttf.c:163 unlock_current_page [ 0.94424] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94437] Glyph 34: 46x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94440] Locking glyph region: 0631FC38 40 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.94446] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94452] Glyph 51: 45x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94454] Locking glyph region: 0631FC38 88 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.94460] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94466] Glyph 53: 40x38 (40x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94468] Locking glyph region: 0631FC38 136 0 40 40
-font D ttf.c:163 unlock_current_page [ 0.94472] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94477] Glyph 41: 47x38 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94478] Locking glyph region: 0631FC38 176 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.94483] Unlocking page: 0631FC38
-font D ttf.c:437 cache_glyph [ 0.94486] Glyph 1 has zero size.
-font D ttf.c:235 alloc_glyph_region [ 0.94489] Glyph 42: 14x39 (16x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94491] Locking glyph region: 0631FC38 224 0 16 40
-font D ttf.c:163 unlock_current_page [ 0.94496] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94506] Glyph 47: 48x38 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94509] Locking glyph region: 0631FC38 240 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.94515] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94521] Glyph 55: 46x39 (48x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94524] Locking glyph region: 0631FC38 288 0 48 40
-font D ttf.c:163 unlock_current_page [ 0.94531] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94536] Glyph 38: 41x38 (44x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94540] Locking glyph region: 0631FC38 336 0 44 40
-font D ttf.c:163 unlock_current_page [ 0.94547] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94554] Glyph 52: 44x39 (44x40)
-font D ttf.c:279 alloc_glyph_region [ 0.94556] Locking glyph region: 0631FC38 380 0 44 40
-font D ttf.c:163 unlock_current_page [ 0.94563] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 0.94576] Glyph 35: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94579] Locking glyph region: 0631F920 160 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94583] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 0.94589] Glyph 47: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 0.94592] Locking glyph region: 0631F920 180 0 20 24
-font D ttf.c:163 unlock_current_page [ 0.94604] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95222] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95229] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95454] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95461] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95488] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95492] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.95513] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.95516] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96092] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96097] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96629] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96636] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96708] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96713] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96738] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96741] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96765] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96769] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96792] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96795] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96818] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96821] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96845] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96848] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.96894] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.96898] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.97279] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.97285] _al_d3d_sync_bitmap (video) ref count == 2
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.98027] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.98034] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.98305] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.98311] _al_d3d_sync_bitmap (video) ref count == 1
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.98436] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.98442] _al_d3d_sync_bitmap (video) ref count == 1
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 7.05771] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 7.05784] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 7.05790] 0.500000
-font D ttf.c:235 alloc_glyph_region [ 7.05882] Glyph 8: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 7.05891] Locking glyph region: 0631F920 200 0 20 24
-font D ttf.c:163 unlock_current_page [ 7.05904] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 7.05920] Glyph 20: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 7.05928] Locking glyph region: 0631F920 220 0 20 24
-font D ttf.c:163 unlock_current_page [ 7.05981] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 7.06001] Glyph 23: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 7.06009] Locking glyph region: 0631F920 240 0 20 24
-font D ttf.c:163 unlock_current_page [ 7.06021] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 7.06039] Glyph 10: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 7.06047] Locking glyph region: 0631F920 260 0 20 24
-font D ttf.c:163 unlock_current_page [ 7.06059] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 7.06074] Glyph 66: 5x15 (8x16)
-font D ttf.c:279 alloc_glyph_region [ 7.06083] Locking glyph region: 0631F920 280 0 8 16
-font D ttf.c:163 unlock_current_page [ 7.06094] Unlocking page: 0631F920
-font D ttf.c:235 alloc_glyph_region [ 7.06111] Glyph 94: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 7.06119] Locking glyph region: 0631F920 288 0 20 24
-font D ttf.c:163 unlock_current_page [ 7.06131] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.06190] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.06200] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 7.57467] Glyph 93: 19x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 7.57478] Locking glyph region: 0631F920 308 0 20 24
-font D ttf.c:163 unlock_current_page [ 7.57490] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.57571] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.57582] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 9.27469] Glyph 95: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 9.27481] Locking glyph region: 0631F920 328 0 20 24
-font D ttf.c:163 unlock_current_page [ 9.27494] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 9.27581] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 9.27591] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 9.87507] Glyph 96: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 9.87522] Locking glyph region: 0631F920 348 0 20 24
-font D ttf.c:163 unlock_current_page [ 9.87541] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 9.87650] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 9.87665] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 10.45807] Glyph 97: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 10.45818] Locking glyph region: 0631F920 368 0 20 24
-font D ttf.c:163 unlock_current_page [ 10.45831] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 10.45913] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 10.45923] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 11.00796] Glyph 98: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 11.00807] Locking glyph region: 0631F920 388 0 20 24
-font D ttf.c:163 unlock_current_page [ 11.00820] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 11.00923] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 11.00941] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 11.97427] Glyph 100: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 11.97435] Locking glyph region: 0631F920 408 0 20 24
-font D ttf.c:163 unlock_current_page [ 11.97446] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 11.97507] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 11.97517] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 12.60817] Glyph 101: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 12.60832] Locking glyph region: 0631F920 428 0 20 24
-font D ttf.c:163 unlock_current_page [ 12.60860] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 12.60966] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 12.60981] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 16.67444] Glyph 102: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 16.67454] Locking glyph region: 0631F920 448 0 20 24
-font D ttf.c:163 unlock_current_page [ 16.67465] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 16.67541] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 16.67552] _al_d3d_sync_bitmap (video) ref count == 1
-font D ttf.c:235 alloc_glyph_region [ 22.55785] Glyph 99: 18x21 (20x24)
-font D ttf.c:279 alloc_glyph_region [ 22.55795] Locking glyph region: 0631F920 468 0 20 24
-font D ttf.c:163 unlock_current_page [ 22.55807] Unlocking page: 0631F920
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 22.55890] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 22.55899] _al_d3d_sync_bitmap (video) ref count == 1
-audio D kcm_mixer.c:121 _al_rechannel_matrix [ 42.34936] sample matrix:
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 42.34955] 0.500000
-audio D kcm_mixer.c:127 _al_rechannel_matrix [ 42.34963] 0.500000
-font D ttf.c:235 alloc_glyph_region [ 42.34988] Glyph 39: 36x38 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 42.34996] Locking glyph region: 0631FC38 424 0 36 40
-font D ttf.c:163 unlock_current_page [ 42.35014] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35031] Glyph 74: 13x38 (16x40)
-font D ttf.c:279 alloc_glyph_region [ 42.35041] Locking glyph region: 0631FC38 460 0 16 40
-font D ttf.c:163 unlock_current_page [ 42.35181] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35207] Glyph 79: 33x29 (36x32)
-font D ttf.c:279 alloc_glyph_region [ 42.35214] Locking glyph region: 0631FC38 476 0 36 32
-font D ttf.c:163 unlock_current_page [ 42.35229] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35255] Glyph 66: 36x29 (36x32)
-font D ttf.c:279 alloc_glyph_region [ 42.35263] Locking glyph region: 0631FC38 512 0 36 32
-font D ttf.c:163 unlock_current_page [ 42.35281] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35304] Glyph 77: 13x39 (16x40)
-font D ttf.c:279 alloc_glyph_region [ 42.35314] Locking glyph region: 0631FC38 548 0 16 40
-font D ttf.c:163 unlock_current_page [ 42.35328] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35370] Glyph 68: 36x29 (36x32)
-font D ttf.c:279 alloc_glyph_region [ 42.35379] Locking glyph region: 0631FC38 564 0 36 32
-font D ttf.c:163 unlock_current_page [ 42.35396] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35435] Glyph 80: 36x29 (36x32)
-font D ttf.c:279 alloc_glyph_region [ 42.35448] Locking glyph region: 0631FC38 600 0 36 32
-font D ttf.c:163 unlock_current_page [ 42.35465] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35483] Glyph 83: 25x29 (28x32)
-font D ttf.c:279 alloc_glyph_region [ 42.35491] Locking glyph region: 0631FC38 636 0 28 32
-font D ttf.c:163 unlock_current_page [ 42.35505] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35526] Glyph 70: 36x29 (36x32)
-font D ttf.c:279 alloc_glyph_region [ 42.35533] Locking glyph region: 0631FC38 664 0 36 32
-font D ttf.c:163 unlock_current_page [ 42.35549] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35567] Glyph 27: 14x27 (16x28)
-font D ttf.c:279 alloc_glyph_region [ 42.35575] Locking glyph region: 0631FC38 700 0 16 28
-font D ttf.c:163 unlock_current_page [ 42.35587] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35610] Glyph 23: 35x39 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 42.35617] Locking glyph region: 0631FC38 716 0 36 40
-font D ttf.c:163 unlock_current_page [ 42.35634] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35662] Glyph 25: 35x39 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 42.35670] Locking glyph region: 0631FC38 752 0 36 40
-font D ttf.c:163 unlock_current_page [ 42.35688] Unlocking page: 0631FC38
-font D ttf.c:235 alloc_glyph_region [ 42.35710] Glyph 17: 35x39 (36x40)
-font D ttf.c:279 alloc_glyph_region [ 42.35717] Locking glyph region: 0631FC38 788 0 36 40
-font D ttf.c:163 unlock_current_page [ 42.35734] Unlocking page: 0631FC38
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 42.35790] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 42.35802] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 48.99545] removed dtor for sample 007C8C68
-dtor D dtor.c:220 _al_unregister_destructor [ 48.99559] removed dtor for bitmap 008136F0
-dtor D dtor.c:220 _al_unregister_destructor [ 48.99769] removed dtor for bitmap 0083B3B8
-dtor D dtor.c:220 _al_unregister_destructor [ 49.00013] removed dtor for sample 007C8CB0
-dtor D dtor.c:220 _al_unregister_destructor [ 49.00026] removed dtor for sample 007C8CF8
-dtor D dtor.c:220 _al_unregister_destructor [ 49.00034] removed dtor for sample 007C8D88
-dtor D dtor.c:220 _al_unregister_destructor [ 49.00606] removed dtor for queue 00818B40
-dtor D dtor.c:220 _al_unregister_destructor [ 49.00795] removed dtor for timer 00808998
-d3d I d3d_disp.cpp:901 d3d_destroy_display [ 49.00809] destroying display 00789FD0 (current 00000000)
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.00982] converting display bitmap 0631FC38 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.01381] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.01409] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.01418] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 49.02309] removed dtor for bitmap 06342EF8
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.02799] converting display bitmap 0631F920 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.02930] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.02962] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.02974] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 49.03143] removed dtor for bitmap 06342EF8
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.03314] converting display bitmap 00826830 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.03476] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.03496] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.03505] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 49.04630] removed dtor for bitmap 06342EF8
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.04790] converting display bitmap 00813320 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.05161] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.05183] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.05191] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.06937] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.06945] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.07104] converting display bitmap 062CDE30 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.07193] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.07205] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.07209] _al_d3d_sync_bitmap (video) ref count == 1
-dtor D dtor.c:220 _al_unregister_destructor [ 49.07814] removed dtor for bitmap 06342EF8
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.07891] converting display bitmap 00813CF0 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.07912] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.07924] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.07927] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08032] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08035] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08051] converting display bitmap 00825F90 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08055] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08063] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08066] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08088] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08091] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08100] converting display bitmap 00826590 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08104] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08110] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08113] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08138] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08144] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08155] converting display bitmap 00813E70 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08160] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08169] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08173] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08200] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08204] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08215] converting display bitmap 0083FE88 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08220] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08227] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08231] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08255] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08259] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08269] converting display bitmap 00826338 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08272] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08279] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08282] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08304] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08307] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08312] converting display bitmap 008261D0 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08315] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08321] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08323] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08348] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08351] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08356] converting display bitmap 00813B88 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08360] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08365] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08367] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08389] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08392] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08401] converting display bitmap 00813858 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08408] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08413] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08415] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08440] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08444] d3d_destroy_bitmap: Release video texture failed.
-bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 49.08454] converting display bitmap 062D7A40 to memory bitmap
-dtor D dtor.c:187 _al_register_destructor [ 49.08461] added dtor for bitmap 06342EF8, func 0FB82202
-d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 49.08469] _al_d3d_sync_bitmap (system) ref count == 1
-d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 49.08473] _al_d3d_sync_bitmap (video) ref count == 2
-dtor D dtor.c:220 _al_unregister_destructor [ 49.08497] removed dtor for bitmap 06342EF8
-d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 49.08500] d3d_destroy_bitmap: Release video texture failed.
-d3d D d3d_disp.cpp:885 d3d_destroy_display_internals [ 49.08504] waiting for display 00789FD0's thread to end
-d3d I d3d_disp.cpp:1549 d3d_display_thread_proc [ 49.09794] d3d display thread exits
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09845] removed dtor for bitmap 00813B88
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09848] removed dtor for bitmap 00813858
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09851] removed dtor for bitmap 062D7A40
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09852] removed dtor for ttf_font 0B6A9320
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09868] removed dtor for ttf_font 0B6A91A0
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09917] removed dtor for bitmap 008261D0
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09921] removed dtor for bitmap 00826338
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09923] removed dtor for bitmap 0083FE88
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09925] removed dtor for bitmap 00813E70
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09928] removed dtor for bitmap 00826590
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09930] removed dtor for bitmap 00825F90
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09932] removed dtor for bitmap 00813CF0
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09940] removed dtor for bitmap 062CDE30
-dtor D dtor.c:220 _al_unregister_destructor [ 49.09961] removed dtor for bitmap 00813320
-dtor D dtor.c:220 _al_unregister_destructor [ 49.10009] removed dtor for bitmap 00826830
-dtor D dtor.c:220 _al_unregister_destructor [ 49.10032] removed dtor for sample_instance 007F6490
-dtor D dtor.c:220 _al_unregister_destructor [ 49.10035] removed dtor for sample_instance 007FF088
-dtor D dtor.c:220 _al_unregister_destructor [ 49.10036] removed dtor for sample_instance 00808508
-dtor D dtor.c:220 _al_unregister_destructor [ 49.10038] removed dtor for sample_instance 00808A88
-dtor D dtor.c:220 _al_unregister_destructor [ 49.10040] removed dtor for mixer 007DCBC8
-audio-dsound D dsound.cpp:509 _dsound_stop_voice [ 49.10041] Stopping voice
-audio-dsound D dsound.cpp:526 _dsound_stop_voice [ 49.10043] Joining thread
-audio-dsound D dsound.cpp:532 _dsound_stop_voice [ 49.10175] Joined thread
-audio-dsound D dsound.cpp:534 _dsound_stop_voice [ 49.10178] Destroying thread
-audio-dsound D dsound.cpp:536 _dsound_stop_voice [ 49.10181] Thread destroyed
-audio-dsound D dsound.cpp:543 _dsound_stop_voice [ 49.10183] Releasing buffer
-audio-dsound I dsound.cpp:547 _dsound_stop_voice [ 49.10185] Voice stopped
-dtor D dtor.c:220 _al_unregister_destructor [ 49.10188] removed dtor for voice 00782DC0
-audio-dsound D dsound.cpp:359 _dsound_deallocate_voice [ 49.10190] Deallocating voice
-audio-dsound D dsound.cpp:364 _dsound_deallocate_voice [ 49.10193] Deallocated voice
-audio-dsound D dsound.cpp:275 _dsound_close [ 49.10196] Releasing device
-audio-dsound D dsound.cpp:277 _dsound_close [ 49.10773] Released device
-audio-dsound I dsound.cpp:278 _dsound_close [ 49.10780] DirectSound closed
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57877] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57880] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57883] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57887] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57889] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57891] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57893] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57896] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.57898] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.57900] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.57903] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.57906] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.57919] added dtor for bitmap 008DABF8, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.57938] opening 5.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57950] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57968] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57979] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57988] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57991] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57993] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57995] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57997] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.57999] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.58001] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.58003] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.58006] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.58009] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.58020] added dtor for bitmap 008D5D78, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.58037] opening 6.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58049] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58051] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58053] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58055] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58063] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58070] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58073] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58078] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58080] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.58082] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.58085] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.58087] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.58093] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.58103] added dtor for bitmap 008DAD60, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.58120] opening blank.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58224] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58228] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58230] 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.58246] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58248] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58251] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58253] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58255] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.58257] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.58259] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.58262] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.58266] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.58304] added dtor for bitmap 008E4D08, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.58735] opening starBG.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58764] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58771] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58773] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58775] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58777] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58779] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58781] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58783] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.58785] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.58787] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.58789] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.58791] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.58793] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.58912] added dtor for bitmap 008EACA0, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.60575] opening starMG.jpg rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60593] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60595] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60597] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60598] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60600] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60601] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60603] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60604] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.60606] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.60607] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.60609] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.60610] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.60612] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.60767] added dtor for bitmap 008EAE08, func 0FA32202
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.62707] opening starFG.png rb
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62730] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62732] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62734] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62735] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62737] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62738] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62739] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62740] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.62742] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.62743] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.62744] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.62746] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.62747] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.62816] added dtor for bitmap 008EAF70, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.65688] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.65694] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66349] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66356] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66395] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66398] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66424] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66427] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66449] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66453] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66475] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66477] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.66496] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.66498] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67257] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67259] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67369] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67372] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67408] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67410] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.67423] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.67425] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81214] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81218] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81219] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81221] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81222] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81223] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81224] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81226] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81227] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.81228] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.81229] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.81231] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.81232] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.81240] added dtor for bitmap 008EB0D8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.81565] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.81569] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 0.81698] removed dtor for bitmap 008EB0D8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.81702] d3d_destroy_bitmap: Release video texture failed.
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81793] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81797] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81798] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81800] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81801] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81803] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81804] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81806] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.81807] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.81809] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.81810] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.81812] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.81813] Chose bitmap format 9
+dtor D dtor.c:187 _al_register_destructor [ 0.81823] added dtor for bitmap 008EB0D8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.81939] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.81944] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 0.82054] removed dtor for bitmap 008EB0D8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 0.82058] d3d_destroy_bitmap: Release video texture failed.
+dtor D dtor.c:187 _al_register_destructor [ 0.82181] added dtor for timer 008D5B20, func 0FA31730
+dtor D dtor.c:187 _al_register_destructor [ 0.82187] added dtor for queue 008DC5D8, func 0FA32351
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.82207] opening Legacy.ttf rb
+font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.82283] Font Legacy.ttf loaded with pixel size 0 x 38.
+font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.82286] ascent=29.0, descent=-9.0, height=38.0
+dtor D dtor.c:187 _al_register_destructor [ 0.82288] added dtor for ttf_font 0087FA88, func 0F571055
+stdio D file_stdio.c:105 file_stdio_fopen [ 0.82290] opening STARWARS.TTF rb
+font D ttf.c:886 al_load_ttf_font_stretch_f [ 0.82309] Font STARWARS.TTF loaded with pixel size 0 x 55.
+font D ttf.c:888 al_load_ttf_font_stretch_f [ 0.82312] ascent=37.0, descent=-11.0, height=46.0
+dtor D dtor.c:187 _al_register_destructor [ 0.82315] added dtor for ttf_font 0087F748, func 0F571055
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 0.82317] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.82319] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 0.82321] 0.500000
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85390] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85394] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85395] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85397] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85399] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85401] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85403] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85404] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85406] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.85408] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.85410] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.85412] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.85414] Chose bitmap format 9
+font D ttf.c:235 alloc_glyph_region [ 0.85488] Glyph 33: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85491] Locking glyph region: 008EB0D8 0 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85544] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 0.85551] Glyph 45: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85554] Locking glyph region: 008EB0D8 20 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85558] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 0.85563] Glyph 51: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85565] Locking glyph region: 008EB0D8 40 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85568] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 0.85573] Glyph 52: 17x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85575] Locking glyph region: 008EB0D8 60 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85578] Unlocking page: 008EB0D8
+font D ttf.c:437 cache_glyph [ 0.85580] Glyph 108 has zero size.
+font D ttf.c:235 alloc_glyph_region [ 0.85584] Glyph 48: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85586] Locking glyph region: 008EB0D8 80 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85590] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 0.85594] Glyph 50: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85596] Locking glyph region: 008EB0D8 100 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85599] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 0.85603] Glyph 37: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85605] Locking glyph region: 008EB0D8 120 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85607] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 0.85612] Glyph 46: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.85613] Locking glyph region: 008EB0D8 140 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.85616] Unlocking page: 008EB0D8
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85626] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85628] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85630] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85631] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85633] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85634] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85636] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85637] Fake format
+d3d D d3d_disp.cpp:1188 real_choose_bitmap_format [ 0.85638] Fake format
+d3d D d3d_disp.cpp:1196 real_choose_bitmap_format [ 0.85640] Alpha doesn't match
+d3d D d3d_disp.cpp:1203 real_choose_bitmap_format [ 0.85642] Adapter format is 23
+d3d D d3d_disp.cpp:1206 real_choose_bitmap_format [ 0.85643] Found a format
+d3d I d3d_disp.cpp:2380 d3d_create_bitmap [ 0.85645] Chose bitmap format 9
+font D ttf.c:235 alloc_glyph_region [ 0.85805] Glyph 37: 39x38 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 0.85809] Locking glyph region: 008EB240 0 0 40 40
+font D ttf.c:163 unlock_current_page [ 0.85987] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.85995] Glyph 34: 46x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.85997] Locking glyph region: 008EB240 40 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.86003] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86009] Glyph 51: 45x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86011] Locking glyph region: 008EB240 88 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.86016] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86020] Glyph 53: 40x38 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86021] Locking glyph region: 008EB240 136 0 40 40
+font D ttf.c:163 unlock_current_page [ 0.86026] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86030] Glyph 41: 47x38 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86032] Locking glyph region: 008EB240 176 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.86037] Unlocking page: 008EB240
+font D ttf.c:437 cache_glyph [ 0.86040] Glyph 1 has zero size.
+font D ttf.c:235 alloc_glyph_region [ 0.86043] Glyph 42: 14x39 (16x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86045] Locking glyph region: 008EB240 224 0 16 40
+font D ttf.c:163 unlock_current_page [ 0.86048] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86053] Glyph 47: 48x38 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86054] Locking glyph region: 008EB240 240 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.86059] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86063] Glyph 55: 46x39 (48x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86065] Locking glyph region: 008EB240 288 0 48 40
+font D ttf.c:163 unlock_current_page [ 0.86070] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86074] Glyph 38: 41x38 (44x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86075] Locking glyph region: 008EB240 336 0 44 40
+font D ttf.c:163 unlock_current_page [ 0.86080] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86085] Glyph 52: 44x39 (44x40)
+font D ttf.c:279 alloc_glyph_region [ 0.86087] Locking glyph region: 008EB240 380 0 44 40
+font D ttf.c:163 unlock_current_page [ 0.86091] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 0.86100] Glyph 35: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.86102] Locking glyph region: 008EB0D8 160 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.86105] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 0.86109] Glyph 47: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 0.86111] Locking glyph region: 008EB0D8 180 0 20 24
+font D ttf.c:163 unlock_current_page [ 0.86119] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.87015] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.87020] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.87263] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.87267] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.87300] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.87303] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.87330] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.87333] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.88382] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.88388] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89429] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89435] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89499] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89504] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89538] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89544] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89575] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89578] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89613] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89617] _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.89654] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89690] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89693] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89726] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89729] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89760] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89763] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89785] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89788] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89809] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89813] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89834] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89837] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.89877] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.89880] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90115] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90120] _al_d3d_sync_bitmap (video) ref count == 2
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90668] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90673] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.90901] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.90906] _al_d3d_sync_bitmap (video) ref count == 1
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 0.91037] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 0.91044] _al_d3d_sync_bitmap (video) ref count == 1
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 1.75604] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 1.75618] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 1.75626] 0.500000
+font D ttf.c:235 alloc_glyph_region [ 1.75727] Glyph 8: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 1.75736] Locking glyph region: 008EB0D8 200 0 20 24
+font D ttf.c:163 unlock_current_page [ 1.75748] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 1.75766] Glyph 20: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 1.75774] Locking glyph region: 008EB0D8 220 0 20 24
+font D ttf.c:163 unlock_current_page [ 1.75823] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 1.75844] Glyph 23: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 1.75852] Locking glyph region: 008EB0D8 240 0 20 24
+font D ttf.c:163 unlock_current_page [ 1.75864] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 1.75884] Glyph 10: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 1.75892] Locking glyph region: 008EB0D8 260 0 20 24
+font D ttf.c:163 unlock_current_page [ 1.75909] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 1.75927] Glyph 66: 5x15 (8x16)
+font D ttf.c:279 alloc_glyph_region [ 1.75935] Locking glyph region: 008EB0D8 280 0 8 16
+font D ttf.c:163 unlock_current_page [ 1.75946] Unlocking page: 008EB0D8
+font D ttf.c:235 alloc_glyph_region [ 1.75964] Glyph 94: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 1.75973] Locking glyph region: 008EB0D8 288 0 20 24
+font D ttf.c:163 unlock_current_page [ 1.75985] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 1.76043] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 1.76060] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 5.52357] Glyph 93: 19x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 5.52369] Locking glyph region: 008EB0D8 308 0 20 24
+font D ttf.c:163 unlock_current_page [ 5.52384] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 5.52468] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 5.52479] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 6.22348] Glyph 95: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 6.22359] Locking glyph region: 008EB0D8 328 0 20 24
+font D ttf.c:163 unlock_current_page [ 6.22378] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 6.22483] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 6.22495] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 7.08984] Glyph 97: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 7.08991] Locking glyph region: 008EB0D8 348 0 20 24
+font D ttf.c:163 unlock_current_page [ 7.08998] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 7.09048] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 7.09053] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 9.35707] Glyph 98: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 9.35719] Locking glyph region: 008EB0D8 368 0 20 24
+font D ttf.c:163 unlock_current_page [ 9.35732] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 9.35819] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 9.35830] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 10.14036] Glyph 100: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 10.14047] Locking glyph region: 008EB0D8 388 0 20 24
+font D ttf.c:163 unlock_current_page [ 10.14060] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 10.14148] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 10.14158] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 10.94022] Glyph 102: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 10.94034] Locking glyph region: 008EB0D8 408 0 20 24
+font D ttf.c:163 unlock_current_page [ 10.94046] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 10.94134] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 10.94144] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 16.23971] Glyph 99: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 16.23978] Locking glyph region: 008EB0D8 428 0 20 24
+font D ttf.c:163 unlock_current_page [ 16.23984] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 16.24033] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 16.24037] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 20.00662] Glyph 101: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 20.00670] Locking glyph region: 008EB0D8 448 0 20 24
+font D ttf.c:163 unlock_current_page [ 20.00679] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.00735] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.00742] _al_d3d_sync_bitmap (video) ref count == 1
+font D ttf.c:235 alloc_glyph_region [ 20.77340] Glyph 96: 18x21 (20x24)
+font D ttf.c:279 alloc_glyph_region [ 20.77351] Locking glyph region: 008EB0D8 468 0 20 24
+font D ttf.c:163 unlock_current_page [ 20.77363] Unlocking page: 008EB0D8
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 20.77446] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 20.77455] _al_d3d_sync_bitmap (video) ref count == 1
+audio D kcm_mixer.c:121 _al_rechannel_matrix [ 86.84006] sample matrix:
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 86.84021] 0.500000
+audio D kcm_mixer.c:127 _al_rechannel_matrix [ 86.84028] 0.500000
+font D ttf.c:235 alloc_glyph_region [ 86.84056] Glyph 39: 36x38 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 86.84064] Locking glyph region: 008EB240 424 0 36 40
+font D ttf.c:163 unlock_current_page [ 86.84083] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84101] Glyph 74: 13x38 (16x40)
+font D ttf.c:279 alloc_glyph_region [ 86.84109] Locking glyph region: 008EB240 460 0 16 40
+font D ttf.c:163 unlock_current_page [ 86.84241] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84268] Glyph 79: 33x29 (36x32)
+font D ttf.c:279 alloc_glyph_region [ 86.84280] Locking glyph region: 008EB240 476 0 36 32
+font D ttf.c:163 unlock_current_page [ 86.84297] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84324] Glyph 66: 36x29 (36x32)
+font D ttf.c:279 alloc_glyph_region [ 86.84332] Locking glyph region: 008EB240 512 0 36 32
+font D ttf.c:163 unlock_current_page [ 86.84348] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84364] Glyph 77: 13x39 (16x40)
+font D ttf.c:279 alloc_glyph_region [ 86.84372] Locking glyph region: 008EB240 548 0 16 40
+font D ttf.c:163 unlock_current_page [ 86.84403] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84428] Glyph 68: 36x29 (36x32)
+font D ttf.c:279 alloc_glyph_region [ 86.84436] Locking glyph region: 008EB240 564 0 36 32
+font D ttf.c:163 unlock_current_page [ 86.84452] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84475] Glyph 80: 36x29 (36x32)
+font D ttf.c:279 alloc_glyph_region [ 86.84483] Locking glyph region: 008EB240 600 0 36 32
+font D ttf.c:163 unlock_current_page [ 86.84499] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84517] Glyph 83: 25x29 (28x32)
+font D ttf.c:279 alloc_glyph_region [ 86.84525] Locking glyph region: 008EB240 636 0 28 32
+font D ttf.c:163 unlock_current_page [ 86.84539] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84670] Glyph 70: 36x29 (36x32)
+font D ttf.c:279 alloc_glyph_region [ 86.84686] Locking glyph region: 008EB240 664 0 36 32
+font D ttf.c:163 unlock_current_page [ 86.84705] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84728] Glyph 27: 14x27 (16x28)
+font D ttf.c:279 alloc_glyph_region [ 86.84735] Locking glyph region: 008EB240 700 0 16 28
+font D ttf.c:163 unlock_current_page [ 86.84748] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84770] Glyph 18: 19x38 (20x40)
+font D ttf.c:279 alloc_glyph_region [ 86.84779] Locking glyph region: 008EB240 716 0 20 40
+font D ttf.c:163 unlock_current_page [ 86.84793] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84819] Glyph 25: 35x39 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 86.84827] Locking glyph region: 008EB240 736 0 36 40
+font D ttf.c:163 unlock_current_page [ 86.84844] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84863] Glyph 21: 38x39 (40x40)
+font D ttf.c:279 alloc_glyph_region [ 86.84870] Locking glyph region: 008EB240 772 0 40 40
+font D ttf.c:163 unlock_current_page [ 86.84890] Unlocking page: 008EB240
+font D ttf.c:235 alloc_glyph_region [ 86.84910] Glyph 17: 35x39 (36x40)
+font D ttf.c:279 alloc_glyph_region [ 86.84917] Locking glyph region: 008EB240 812 0 36 40
+font D ttf.c:163 unlock_current_page [ 86.84930] Unlocking page: 008EB240
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 86.84979] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 86.84990] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 90.32580] removed dtor for sample 00888CA0
+dtor D dtor.c:220 _al_unregister_destructor [ 90.32595] removed dtor for bitmap 008F3D08
+dtor D dtor.c:220 _al_unregister_destructor [ 90.32818] removed dtor for bitmap 008FF708
+dtor D dtor.c:220 _al_unregister_destructor [ 90.33283] removed dtor for sample 00888CE8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.33300] removed dtor for sample 00888D30
+dtor D dtor.c:220 _al_unregister_destructor [ 90.33327] removed dtor for sample 00888DC0
+dtor D dtor.c:220 _al_unregister_destructor [ 90.34168] removed dtor for queue 008DC5D8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.35720] removed dtor for timer 008D5B20
+d3d I d3d_disp.cpp:901 d3d_destroy_display [ 90.35735] destroying display 00849FE0 (current 00000000)
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.36084] converting display bitmap 008EB240 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.36585] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.36610] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.36618] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 90.37282] removed dtor for bitmap 008EB3A8
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.37519] converting display bitmap 008EB0D8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.37708] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.37726] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.37734] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 90.37884] removed dtor for bitmap 008EB3A8
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.38104] converting display bitmap 008EAF70 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.38394] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.38414] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.38421] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 90.39146] removed dtor for bitmap 008EB3A8
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.39238] converting display bitmap 008EAE08 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.39411] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.39428] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.39433] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.40859] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.40867] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.41025] converting display bitmap 008EACA0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.41193] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.41208] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.41213] _al_d3d_sync_bitmap (video) ref count == 1
+dtor D dtor.c:220 _al_unregister_destructor [ 90.41885] removed dtor for bitmap 008EB3A8
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.41946] converting display bitmap 008E4D08 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.41967] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.41980] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.41983] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42083] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42088] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42101] converting display bitmap 008DAD60 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42105] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42111] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42114] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42136] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42139] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42147] converting display bitmap 008D5D78 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42149] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42155] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42157] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42176] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42178] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42185] converting display bitmap 008DABF8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42188] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42193] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42195] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42213] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42215] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42222] converting display bitmap 008DAA90 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42224] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42229] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42231] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42250] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42254] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42266] converting display bitmap 008C12D8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42271] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42278] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42281] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42304] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42306] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42314] converting display bitmap 008D5FB8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42317] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42323] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42325] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42344] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42346] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42354] converting display bitmap 008D5C10 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42358] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42364] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42367] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42396] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42399] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42408] converting display bitmap 008D59B8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42412] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42417] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42420] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42445] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42448] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42456] converting display bitmap 008D5850 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42459] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42464] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42467] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42487] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42490] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42495] converting display bitmap 008C1650 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42498] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42501] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42503] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42525] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42528] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42533] converting display bitmap 008C14E8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42536] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42539] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42541] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42556] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42558] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42562] converting display bitmap 008F3BA0 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42564] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42567] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42569] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42584] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42586] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42593] converting display bitmap 008F3870 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42597] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42601] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42603] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42624] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42626] d3d_destroy_bitmap: Release video texture failed.
+bitmap D bitmap_type.c:300 _al_convert_to_memory_bitmap [ 90.42633] converting display bitmap 07911CC8 to memory bitmap
+dtor D dtor.c:187 _al_register_destructor [ 90.42636] added dtor for bitmap 008EB3A8, func 0FA32202
+d3d D d3d_bmp.cpp:539 _al_d3d_sync_bitmap [ 90.42641] _al_d3d_sync_bitmap (system) ref count == 1
+d3d D d3d_bmp.cpp:545 _al_d3d_sync_bitmap [ 90.42643] _al_d3d_sync_bitmap (video) ref count == 2
+dtor D dtor.c:220 _al_unregister_destructor [ 90.42660] removed dtor for bitmap 008EB3A8
+d3d W d3d_disp.cpp:2423 _al_d3d_destroy_bitmap [ 90.42662] d3d_destroy_bitmap: Release video texture failed.
+d3d D d3d_disp.cpp:885 d3d_destroy_display_internals [ 90.42672] waiting for display 00849FE0's thread to end
+d3d I d3d_disp.cpp:1549 d3d_display_thread_proc [ 90.43301] d3d display thread exits
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43454] removed dtor for bitmap 008F3BA0
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43460] removed dtor for bitmap 008F3870
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43463] removed dtor for bitmap 07911CC8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43466] removed dtor for ttf_font 0087FA88
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43487] removed dtor for ttf_font 0087F748
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43553] removed dtor for bitmap 008D5FB8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43560] removed dtor for bitmap 008C12D8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43563] removed dtor for bitmap 008DAA90
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43567] removed dtor for bitmap 008DABF8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43570] removed dtor for bitmap 008D5D78
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43572] removed dtor for bitmap 008DAD60
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43575] removed dtor for bitmap 008E4D08
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43579] removed dtor for bitmap 008EACA0
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43606] removed dtor for bitmap 008EAE08
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43663] removed dtor for bitmap 008EAF70
+dtor D dtor.c:115 _al_run_destructors [ 90.43694] calling dtor for bitmap 008D5C10, func 0FA32202
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43698] removed dtor for bitmap 008D5C10
+dtor D dtor.c:115 _al_run_destructors [ 90.43705] calling dtor for bitmap 008D59B8, func 0FA32202
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43708] removed dtor for bitmap 008D59B8
+dtor D dtor.c:115 _al_run_destructors [ 90.43711] calling dtor for bitmap 008D5850, func 0FA32202
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43713] removed dtor for bitmap 008D5850
+dtor D dtor.c:115 _al_run_destructors [ 90.43716] calling dtor for bitmap 008C1650, func 0FA32202
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43719] removed dtor for bitmap 008C1650
+dtor D dtor.c:115 _al_run_destructors [ 90.43721] calling dtor for bitmap 008C14E8, func 0FA32202
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43724] removed dtor for bitmap 008C14E8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43727] removed dtor for sample_instance 008AB160
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43731] removed dtor for sample_instance 008B76F0
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43734] removed dtor for sample_instance 008B77F8
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43737] removed dtor for sample_instance 008B7990
+dtor D dtor.c:220 _al_unregister_destructor [ 90.43741] removed dtor for mixer 008B75C8
+audio-dsound D dsound.cpp:509 _dsound_stop_voice [ 90.43744] Stopping voice
+audio-dsound D dsound.cpp:526 _dsound_stop_voice [ 90.43746] Joining thread
+audio-dsound D dsound.cpp:532 _dsound_stop_voice [ 90.44022] Joined thread
+audio-dsound D dsound.cpp:534 _dsound_stop_voice [ 90.44026] Destroying thread
+audio-dsound D dsound.cpp:536 _dsound_stop_voice [ 90.44028] Thread destroyed
+audio-dsound D dsound.cpp:543 _dsound_stop_voice [ 90.44030] Releasing buffer
+audio-dsound I dsound.cpp:547 _dsound_stop_voice [ 90.44032] Voice stopped
+dtor D dtor.c:220 _al_unregister_destructor [ 90.44035] removed dtor for voice 00842DB0
+audio-dsound D dsound.cpp:359 _dsound_deallocate_voice [ 90.44036] Deallocating voice
+audio-dsound D dsound.cpp:364 _dsound_deallocate_voice [ 90.44038] Deallocated voice
+audio-dsound D dsound.cpp:275 _dsound_close [ 90.44041] Releasing device
+audio-dsound D dsound.cpp:277 _dsound_close [ 90.44710] Released device
+audio-dsound I dsound.cpp:278 _dsound_close [ 90.44716] DirectSound closed
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Wed, Jun 17, 10:23 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
70724
Default Alt Text
(241 KB)
Attached To
Mode
R72 DarthInvaders
Attached
Detach File
Event Timeline