src/polygoncache.h@0e729e681a2c
src/polygoncache.h
Wed, 25 May 2022 18:29:49 +0300
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Wed, 25 May 2022 18:29:49 +0300
- changeset 197
- 0e729e681a2c
- parent 193
-
b4beff48bb7a
- child 200
-
ca23936b455b
- permissions
- -rw-r--r--
move drawState to Document
#pragma once
#include "main.h"
#include "model.h"
struct PolygonCache
{
std::vector<gl::Polygon> cachedPolygons;
bool needRecache = true;
};
const std::vector<gl::Polygon>& getCachedPolygons(
PolygonCache* cache,
Model* model,
class DocumentManager* documents);