src/polygoncache.h

Sun, 09 Apr 2023 16:01:38 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Sun, 09 Apr 2023 16:01:38 +0300
changeset 363
16f5dcfa7c9f
parent 338
719b909a7d2b
permissions
-rw-r--r--

Removed unused code

#pragma once
#include <QTextDocument>
#include "src/basics.h"
#include "src/model.h"
#include "src/gl/common.h"

template<typename T>
struct WithId : T
{
	std::int32_t linenumber;
};

struct PolygonCache
{
	using vector_type = std::vector<WithId<PolygonElement>>;
	vector_type polygons;
	bool needRecache = true;
};

void recacheIfNeeded(
	PolygonCache* cache,
	QTextDocument* model,
	class DocumentManager* documents);
PolygonCache* findPolygonCacheForModel(QTextDocument* model, DocumentManager* context);

mercurial