verus/Verus/src/CGI/RendererParser.h
2019-11-01 01:00:26 +03:00

19 lines
401 B
C++

#pragma once
namespace verus
{
namespace CGI
{
class RendererParser
{
static int StrCompare(const void* pA, const void* pB);
public:
static int Expect(CSZ& p, CSZ* ppOptions);
static int ExpectBlendOp(CSZ& p);
static int ExpectCompFunc(CSZ& p, char end, bool skipSpace);
static int ExpectStencilOp(CSZ& p, char end, bool skipSpace);
static int SkipSpace(CSZ& p);
};
}
}