// // Copyright 2012 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // angletypes.inc : Inline definitions of some functions from angletypes.h namespace gl { inline bool operator==(const Rectangle &a, const Rectangle &b) { … } inline bool operator!=(const Rectangle &a, const Rectangle &b) { … } inline bool operator==(const SamplerState &a, const SamplerState &b) { … } inline bool operator!=(const SamplerState &a, const SamplerState &b) { … } } // namespace gl