]> git.cworth.org Git - apitrace/blobdiff - cli/trace_analyzer.hpp
Rename trim::CallSet to trace::FastCallSet
[apitrace] / cli / trace_analyzer.hpp
index 6e9140a78a1db75c99a808f6e455f8a365ec8c71..3e4013bcd07fcfe6fd0806f936a22132508a3e06 100644 (file)
@@ -29,7 +29,7 @@
 #include <GL/glext.h>
 
 #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<GLenum, unsigned> 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);
 };