4#include <glbinding/glbinding_api.h>
30GLBINDING_API
void resize(
unsigned int newSize);
47GLBINDING_API
void start(
const std::string & filepath);
58GLBINDING_API
void startExcept(
const std::set<std::string> & blackList);
69GLBINDING_API
void startExcept(
const std::string & filepath,
const std::set<std::string> & blackList);
GLBINDING_API void stop()
Stops logging and flushing log file.
GLBINDING_API void resume()
Resumes paused logging.
GLBINDING_API void start()
Start logging to a file globally.
GLBINDING_API void log(LogEntry call)
Add a function call to the log.
GLBINDING_API void startExcept(const std::set< std::string > &blackList)
Start logging to a file globally, except for blacklisted functions.
GLBINDING_API void resize(unsigned int newSize)
Resizes the global log buffer.
GLBINDING_API void pause()
Pauses logging for later stopping or resuming.
Contains all the classes of glbinding.
A FunctionCall represents a function call of an OpenGL API function, including the parameter and retu...
Definition: FunctionCall.h:23