common: Move the list to the gl_engine side.

Unfortunately, the usage of this list is not intuitive,
so can be confusing. Placed it only for gl.
This commit is contained in:
Hermet Park 2023-11-22 13:11:42 +09:00 committed by Hermet Park
parent 023d961118
commit 9f105b60c4
4 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,6 @@ source_file = [
'tvgFormat.h',
'tvgCompressor.h',
'tvgInlist.h',
'tvgList.h',
'tvgMath.h',
'tvgStr.h',
'tvgBezier.cpp',

View file

@ -2,6 +2,7 @@ source_file = [
'tvgGlCommon.h',
'tvgGlGeometry.h',
'tvgGlGpuBuffer.h',
'tvgGlList.h',
'tvgGlProgram.h',
'tvgGlRenderer.h',
'tvgGlRenderPass.h',

View file

@ -22,7 +22,7 @@
#include "tvgGlTessellator.h"
#include "tvgRender.h"
#include "tvgList.h"
#include "tvgGlList.h"
#include <algorithm>
#include <array>