// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gpu/command_buffer/service/texture_base.h" #include "base/check_op.h" namespace gpu { TextureBase::TextureBase(unsigned int service_id) : … { … } TextureBase::~TextureBase() = default; void TextureBase::SetTarget(unsigned int target) { … } TextureBase::Type TextureBase::GetType() const { … } } // namespace gpu