Skip to content

Commit

Permalink
Renamed additional files & sublime projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
fruxo committed Jan 16, 2014
1 parent 87e6f55 commit 43c9311
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 41 deletions.
2 changes: 1 addition & 1 deletion DemoAndroid/tinkerbell_android.sublime-project
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"path": "../Demo/renderers/"
},
{
"path": "../tinkerbell/",
"path": "../src/",
"folder_exclude_patterns": ["icon"],
"file_exclude_patterns": ["*.png"]
}
Expand Down
2 changes: 1 addition & 1 deletion ide_extensions/VisualStudio/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
REM set the current directory to where the bat file is
cd /d %~dp0

copy tinkerbell.natvis "%USERPROFILE%\Documents\Visual Studio 11\Visualizers\"
copy turbobadger.natvis "%USERPROFILE%\Documents\Visual Studio 11\Visualizers\"
Original file line number Diff line number Diff line change
@@ -1,35 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="tinkerbell::TBStr">
<Type Name="tb::TBStr">
<DisplayString>{s}</DisplayString>
<StringView>s</StringView>
<StringView>s</StringView>
</Type>
<Type Name="tinkerbell::TBRect">
<Type Name="tb::TBRect">
<DisplayString>{{x={x} y={y} w={w} h={h}}}</DisplayString>
</Type>
<Type Name="tinkerbell::TBID_not_needed_sdfasdfa">
<DisplayString>{id} ({debug_string.s})</DisplayString>
</Type>
<Type Name="tinkerbell::TBFontDescription">
<Type Name="tb::TBFontDescription">
<DisplayString Condition="m_id.id == 0 &amp;&amp; m_packed_init == 0">Unspecified font (inherit)</DisplayString>
<DisplayString Condition="m_id.id == 0">Test dummy font, size: {m_packed.size}</DisplayString>
<DisplayString>{m_id.debug_string.s}, size: {m_packed.size}</DisplayString>
</Type>
<Type Name="tinkerbell::TBValue">
<Type Name="tb::TBValue">
<DisplayString Condition="m_packed.type == 0">NULL</DisplayString>
<DisplayString Condition="m_packed.type == 1">{val_str}</DisplayString>
<DisplayString Condition="m_packed.type == 2">{val_float}</DisplayString>
<DisplayString Condition="m_packed.type == 3">{val_int}</DisplayString>
<DisplayString Condition="m_packed.type == 4">array {val_arr}</DisplayString>
</Type>
<Type Name="tinkerbell::TBValueArray">
<Type Name="tb::TBValueArray">
<DisplayString>{m_list}</DisplayString>
</Type>
<Type Name="tinkerbell::TBListBackend">
<Type Name="tb::TBListBackend">
<DisplayString Condition="m_data != 0">length = {m_data->num}</DisplayString>
<DisplayString>length = 0</DisplayString>
</Type>
<Type Name="tinkerbell::TBWidgetEvent">
<Type Name="tb::TBWidgetEvent">
<DisplayString>type={type}</DisplayString>
</Type>
</AutoVisualizer>
2 changes: 1 addition & 1 deletion src/tb/tb_font_renderer_tbbf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ struct GLYPH {
glyphs for a given size. The number of glyphs that the font contains is
defined by the glyph string defined in the text file.
Text file format (in tb.txt format parsed by tinkerbell/parser/tb_parser.h):
Text file format (in tb.txt format parsed by parser/tb_parser.h):
- info>glyph_str Should specify which characters the image
file contains.
Expand Down
27 changes: 0 additions & 27 deletions tinkerbell.sublime-project

This file was deleted.

39 changes: 39 additions & 0 deletions turbobadger.sublime-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"build_systems":
[
{
"cmd":
[
"make",
"DEBUG=YES"
],
"name": "Make DEBUG=YES",
"working_dir": "${project_path:${folder}}"
}
],
"folders":
[
{
"file_exclude_patterns":
[
"*~",
"RunDemo",
"*.png",
"*.o.d"
],
"folder_exclude_patterns":
[
"VisualStudio"
],
"follow_symlinks": true,
"path": "."
}
],
"settings":
{
"sublimegdb_commandline": "gdb --interpreter=mi ./RunDemo",
"sublimegdb_workingdir": "${folder:${project_path:RunDemo}}",
"tab_size": 4,
"trim_trailing_white_space_on_save": true
}
}

0 comments on commit 43c9311

Please sign in to comment.