Latest TB changes.

This commit is contained in:
Ben Vanik
2015-07-02 00:23:42 -07:00
parent c13abf3afa
commit fd50209760
6 changed files with 106 additions and 88 deletions

View File

@@ -22,7 +22,7 @@ namespace xe {
namespace debug {
namespace ui {
class TBRendererGL4 : public tb::TBRendererBatcher {
class TBRendererGL4 : public tb::RendererBatcher {
public:
TBRendererGL4();
~TBRendererGL4() override;
@@ -32,10 +32,10 @@ class TBRendererGL4 : public tb::TBRendererBatcher {
void BeginPaint(int render_target_w, int render_target_h) override;
void EndPaint() override;
tb::TBBitmap* CreateBitmap(int width, int height, uint32_t* data) override;
tb::Bitmap* CreateBitmap(int width, int height, uint32_t* data) override;
void RenderBatch(Batch* batch) override;
void SetClipRect(const tb::TBRect& rect) override;
void SetClipRect(const tb::Rect& rect) override;
private:
class TBBitmapGL4;