Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Namespaces | Functions
SkSLPrefixExpression.cpp File Reference
#include "src/sksl/ir/SkSLPrefixExpression.h"
#include "include/core/SkTypes.h"
#include "src/sksl/SkSLAnalysis.h"
#include "src/sksl/SkSLConstantFolder.h"
#include "src/sksl/SkSLContext.h"
#include "src/sksl/SkSLDefines.h"
#include "src/sksl/SkSLErrorReporter.h"
#include "src/sksl/SkSLOperator.h"
#include "src/sksl/SkSLProgramSettings.h"
#include "src/sksl/ir/SkSLBinaryExpression.h"
#include "src/sksl/ir/SkSLConstructorArray.h"
#include "src/sksl/ir/SkSLConstructorCompound.h"
#include "src/sksl/ir/SkSLConstructorDiagonalMatrix.h"
#include "src/sksl/ir/SkSLLiteral.h"
#include "src/sksl/ir/SkSLType.h"
#include "src/sksl/ir/SkSLVariableReference.h"
#include <cstddef>
#include <optional>

Go to the source code of this file.

Namespaces

namespace  SkSL
 

Functions

static ExpressionArray SkSL::negate_operands (const Context &context, Position pos, const ExpressionArray &operands)
 
static double SkSL::negate_value (double value)
 
static double SkSL::bitwise_not_value (double value)
 
static std::unique_ptr< ExpressionSkSL::apply_to_elements (const Context &context, Position pos, const Expression &expr, double(*fn)(double))
 
static std::unique_ptr< ExpressionSkSL::simplify_negation (const Context &context, Position pos, const Expression &originalExpr)
 
static std::unique_ptr< ExpressionSkSL::negate_operand (const Context &context, Position pos, std::unique_ptr< Expression > value)
 
static std::unique_ptr< ExpressionSkSL::logical_not_operand (const Context &context, Position pos, std::unique_ptr< Expression > operand)
 
static std::unique_ptr< ExpressionSkSL::bitwise_not_operand (const Context &context, Position pos, std::unique_ptr< Expression > operand)