mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-04-22 05:59:55 +08:00
31 lines
692 B
C++
31 lines
692 B
C++
#ifndef EXAMPLE_RENDER_H_
|
|
#define EXAMPLE_RENDER_H_
|
|
|
|
#include <atomic> // C++11
|
|
|
|
#include "render-config.h"
|
|
#include "nanosg.h"
|
|
#include "mesh.h"
|
|
#include "material.h"
|
|
|
|
namespace example {
|
|
|
|
struct Asset {
|
|
std::vector<Mesh<float> > meshes;
|
|
std::vector<Material> materials;
|
|
std::vector<Texture> textures;
|
|
};
|
|
|
|
class Renderer {
|
|
public:
|
|
Renderer() {}
|
|
~Renderer() {}
|
|
|
|
/// Returns false when the rendering was canceled.
|
|
static bool Render(float* rgba, float* aux_rgba, int *sample_counts, float quat[4],
|
|
const nanosg::Scene<float, Mesh<float>> &scene, const Asset &asset, const RenderConfig& config, std::atomic<bool>& cancel_flag);
|
|
};
|
|
};
|
|
|
|
#endif // EXAMPLE_RENDER_H_
|