12 lines
212 B
C++
12 lines
212 B
C++
#pragma once
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
namespace pp::platform::linux_desktop {
|
|
|
|
void set_fps_title_callback(std::function<void(std::string)> callback);
|
|
void report_rendered_frames(int frames);
|
|
|
|
}
|