• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Small footprint UI library for hardware accelerated games & applications


RSS
Rev. Time Author
93bf92a 2016-06-16 04:39:15 Emil Segerås

Define factory for TBWindow. Fixes #72

483ec58 2016-06-12 23:36:47 Emil Segerås

Use ibeam cursor for edit fields. Fixes #77

7ade1a1 2016-06-11 04:16:04 Emil Segerås

Clamp opacity before use.

e55540f 2016-06-11 04:13:58 Emil Segerås

Fixed outdated comment

1259d8b 2016-06-11 04:11:15 Emil Segerås

Removed warning

c1dd7f8 2016-06-11 04:06:56 Emil Segerås

Plugged memory leak in TBFontEffect.

Render returned new buffer in data8 which was never freed.
TBFontGlyphData is just passing around pointers and doesn't own data.

7501b4f 2016-06-04 04:04:17 Emil Segerås

Run FileOptimizer on default skin & font bitmaps.

3060857 2016-06-04 04:02:49 Emil Segerås

Merge pull request #73 from mgerhardy/patch-1

fixed compilation with gcc 6.1.1

edc0903 2016-06-02 21:07:28 Martin Gerhardy

fixed compilation with gcc 6.1.1

```
from /home/mgerhardy/turbobadger/tb/tb_image_loader_stb.cpp:30:
/usr/include/c++/6/cstdlib:124:11: error: ‘::div_t’ has not been declared
using ::div_t;
^~~~~
/usr/include/c++/6/cstdlib:125:11: error: ‘::ldiv_t’ has not been declared
using ::ldiv_t;
^~~~~~
/usr/include/c++/6/cstdlib:127:11: error: ‘::abort’ has not been declared
using ::abort;
^~~~~
/usr/include/c++/6/cstdlib:128:11: error: ‘::abs’ has not been declared
using ::abs;
^~~
/usr/include/c++/6/cstdlib:129:11: error: ‘::atexit’ has not been declared
using ::atexit;
^~~~~~
/usr/include/c++/6/cstdlib:132:11: error: ‘::at_quick_exit’ has not been declared
using ::at_quick_exit;
^~~~~~~~~~~~~
/usr/include/c++/6/cstdlib:135:11: error: ‘::atof’ has not been declared
using ::atof;
^~~~
/usr/include/c++/6/cstdlib:136:11: error: ‘::atoi’ has not been declared
using ::atoi;
^~~~
/usr/include/c++/6/cstdlib:137:11: error: ‘::atol’ has not been declared
using ::atol;
```

0d02f3a 2016-03-07 17:24:09 Emil Segerås

Merge pull request #55 from jaynus/master

Initial implementation of "modern" CMake system

037c8ae 2016-02-22 04:03:34 Emil Segerås

Merge pull request #64 from fungos/master

Fixes cross-compilation with Google's Native Client toolchain

442eea2 2016-02-21 10:31:13 Danny Angelo Carminati Grein

Fixes compilation for cross-compilation with Google's Native Client
toolchain.

d1aff4a 2016-02-13 22:34:51 Emil Segerås

Added missing TB_RENDERER_GL ifdef. Fixes #61

97059bb 2016-02-07 22:18:59 Emil Segerås

Merge pull request #59 from Cleroth/pull_requests

Use constexpr in MSVC2015+

Macros need to use namespace as they're not actually in the namespace

e4dbfde 2016-02-07 02:27:41 Cleroth Sun

Use constexpr in MSVC2015+; Macros need to use namespace as they're not actually in the namespace

e6e9bd6 2016-01-11 15:24:30 Walter Pearce

Initial implementation of "modern" CMake system.

- the option of configuring tb_config.h via the Cmake options, optionally setting some
- Fixed TB overriding target paths and made it optional for demo. Building in source dir is bad.
- Provides proper install targets

084a3f3 2016-01-09 04:36:17 Emil Segerås

Fixed endless focus loop. Fixes #52

487dd0f 2015-12-17 03:14:34 Emil Segerås

Fixed typo in SetVisibility. Fixes #51.

10c7361 2015-11-03 01:26:15 Emil Segerås

Merge pull request #48 from rongzhou/master

Cleanup unnecessary comma

ccc8b31 2015-11-02 09:45:09 rongzhou

Cleanup unnecessary comma

e659074 2015-07-26 16:57:44 Emil Segerås

Fixed keyboard shortcuts on linux.

78f4460 2015-07-26 16:40:54 Emil Segerås

Merge branch 'glfw_3_1_1'

ec844e8 2015-07-26 16:32:45 Emil Segerås

Fixed keyboard shortcuts on osx.

Something changed once again in the new glfw version.

2f51f25 2015-07-02 21:27:53 Emil Segerås

Refactorized demo platform integration to better suit game loops.

Makes it easier to reuse the demo platform glue for other projects.
Especially game loops or platforms where rendering is set up in a
different order.

TB API change: Removed language file path from tb_core_init.
g_tb_lng->Load should be called manually after tb_core_init instead.

3e6464d 2015-07-02 21:12:00 Emil Segerås

Compile fixes for new toolchains on Android

5596f37 2015-07-01 21:10:56 Emil Segerås

Modified and moved comment.

91912d3 2015-07-01 20:50:40 Emil Segerås

Merge pull request #36 from LittleCodingFox/master

Added PointerUp/Down consume support

b82514c 2015-07-01 20:47:30 Emil Segerås

Use TBTempBuffer instead of manual deallocation. Fixes #33

Also cleaned up unused code.

a2cabbb 2015-06-27 03:06:50 Emil Segerås

Make the demo find resources on os x.

e110098 2015-06-26 02:48:07 Emil Segerås

If no group root is found, use absolute root.