feat: updated engine
This commit is contained in:
parent
cbe99774ff
commit
f4cf6b3999
6607 changed files with 910135 additions and 430025 deletions
|
|
@ -29,7 +29,10 @@
|
|||
/**************************************************************************/
|
||||
|
||||
#include "shader_preprocessor.h"
|
||||
#include "core/math/expression.h"
|
||||
|
||||
#include "core/io/resource_loader.h"
|
||||
#include "core/os/os.h"
|
||||
#include "servers/rendering/shader_expression.h"
|
||||
|
||||
const char32_t CURSOR = 0xFFFF;
|
||||
|
||||
|
|
@ -491,7 +494,7 @@ void ShaderPreprocessor::process_elif(Tokenizer *p_tokenizer) {
|
|||
return;
|
||||
}
|
||||
|
||||
Expression expression;
|
||||
ShaderExpression expression;
|
||||
Vector<String> names;
|
||||
error = expression.parse(body, names);
|
||||
if (error != OK) {
|
||||
|
|
@ -612,7 +615,7 @@ void ShaderPreprocessor::process_if(Tokenizer *p_tokenizer) {
|
|||
return;
|
||||
}
|
||||
|
||||
Expression expression;
|
||||
ShaderExpression expression;
|
||||
Vector<String> names;
|
||||
error = expression.parse(body, names);
|
||||
if (error != OK) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue