X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=cli%2Ftrace_analyzer.hpp;h=c344fb6af320100ef80b874976549b151318451d;hb=b34c6756b2e1abb6be20770f43f44d0b5e90f677;hp=3c1d3f7d687f9decd36184e2ecc667cdaea8cc9c;hpb=175f5d675d1406dbbe08e60cfc71a347a6a37482;p=apitrace diff --git a/cli/trace_analyzer.hpp b/cli/trace_analyzer.hpp index 3c1d3f7..c344fb6 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); };