mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-26 16:04:34 +00:00
Wrap ImGuiColorTextEdit in tracy namespace.
This commit is contained in:
parent
1529fa5b42
commit
a90ed5b4b8
@ -6,6 +6,9 @@
|
|||||||
|
|
||||||
#include "TextEditor.h"
|
#include "TextEditor.h"
|
||||||
|
|
||||||
|
namespace tracy
|
||||||
|
{
|
||||||
|
|
||||||
static const int cTextStart = 7;
|
static const int cTextStart = 7;
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
@ -2124,3 +2127,5 @@ TextEditor::LanguageDefinition TextEditor::LanguageDefinition::Lua()
|
|||||||
}
|
}
|
||||||
return langDef;
|
return langDef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -8,7 +8,11 @@
|
|||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
#include "imgui.h"
|
|
||||||
|
#include "../imgui/imgui.h"
|
||||||
|
|
||||||
|
namespace tracy
|
||||||
|
{
|
||||||
|
|
||||||
class TextEditor
|
class TextEditor
|
||||||
{
|
{
|
||||||
@ -321,3 +325,4 @@ private:
|
|||||||
Coordinates mInteractiveStart, mInteractiveEnd;
|
Coordinates mInteractiveStart, mInteractiveEnd;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user