chromium/third_party/skia/src/sksl/ir/SkSLTypeReference.cpp

/*
 * Copyright 2021 Google LLC
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "src/sksl/ir/SkSLTypeReference.h"

#include "include/core/SkTypes.h"
#include "src/sksl/SkSLErrorReporter.h"
#include "src/sksl/SkSLProgramSettings.h"

namespace SkSL {

bool TypeReference::VerifyType(const Context& context, const SkSL::Type* type, Position pos) {}

std::unique_ptr<TypeReference> TypeReference::Convert(const Context& context,
                                                      Position pos,
                                                      const Type* type) {}

std::unique_ptr<TypeReference> TypeReference::Make(const Context& context,
                                                   Position pos,
                                                   const Type* type) {}

} // namespace SkSL