X-Git-Url: https://git.cworth.org/git?p=apitrace;a=blobdiff_plain;f=cli%2Ftrace_analyzer.hpp;h=3e4013bcd07fcfe6fd0806f936a22132508a3e06;hp=6e9140a78a1db75c99a808f6e455f8a365ec8c71;hb=ec8f5a61f393e75e4c3e3e22f84c773af66810e9;hpb=22dc6014ecb09547929c45a8fb82820740230589 diff --git a/cli/trace_analyzer.hpp b/cli/trace_analyzer.hpp index 6e9140a..3e4013b 100644 --- a/cli/trace_analyzer.hpp +++ b/cli/trace_analyzer.hpp @@ -29,7 +29,7 @@ #include #include "trace_callset.hpp" -#include "trim_callset.hpp" +#include "trace_fast_callset.hpp" #include "trace_parser.hpp" typedef unsigned TrimFlags; @@ -59,7 +59,7 @@ private: std::map texture_map; - trim::CallSet required; + trace::FastCallSet required; bool transformFeedbackActive; bool framebufferObjectActive; @@ -110,5 +110,5 @@ public: /* Return a set of all the required calls, (both those calls added * explicitly with require() and those implicitly depended * upon. */ - trim::CallSet *get_required(void); + trace::FastCallSet *get_required(void); };