Edit

kc3-lang/angle/src/libANGLE/IndexRangeCache.cpp

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2017-11-21 19:22:44
    Hash : acf2f3ad
    Message : Apply Chromium style fixes. This addresses several minor code quality issues that are validated in Chromium, but not yet applied to ANGLE: * constructors and destructors must be defined out-of-line * auto is not allowed for simple pointer types * use override everywhere instead of virtual * virtual functions must also be defined out-of-line Slightly reduces binary size for me (~2k on Win, 150k on Linux). Bug: angleproject:1569 Change-Id: I073ca3365188caf5f29fb28d9eb207903c1843e6 Reviewed-on: https://chromium-review.googlesource.com/779959 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/libANGLE/IndexRangeCache.cpp
  • //
    // Copyright (c) 2013 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.
    //
    
    // IndexRangeCache.cpp: Defines the gl::IndexRangeCache class which stores information about
    // ranges of indices.
    
    #include "libANGLE/IndexRangeCache.h"
    
    #include "common/debug.h"
    #include "libANGLE/formatutils.h"
    
    namespace gl
    {
    
    IndexRangeCache::IndexRangeCache()
    {
    }
    
    IndexRangeCache::~IndexRangeCache()
    {
    }
    
    void IndexRangeCache::addRange(GLenum type,
                                   size_t offset,
                                   size_t count,
                                   bool primitiveRestartEnabled,
                                   const IndexRange &range)
    {
        mIndexRangeCache[IndexRangeKey(type, offset, count, primitiveRestartEnabled)] = range;
    }
    
    bool IndexRangeCache::findRange(GLenum type,
                                    size_t offset,
                                    size_t count,
                                    bool primitiveRestartEnabled,
                                    IndexRange *outRange) const
    {
        auto i = mIndexRangeCache.find(IndexRangeKey(type, offset, count, primitiveRestartEnabled));
        if (i != mIndexRangeCache.end())
        {
            if (outRange)
            {
                *outRange = i->second;
            }
            return true;
        }
        else
        {
            if (outRange)
            {
                *outRange = IndexRange();
            }
            return false;
        }
    }
    
    void IndexRangeCache::invalidateRange(size_t offset, size_t size)
    {
        size_t invalidateStart = offset;
        size_t invalidateEnd   = offset + size;
    
        auto i = mIndexRangeCache.begin();
        while (i != mIndexRangeCache.end())
        {
            size_t rangeStart = i->first.offset;
            size_t rangeEnd   = i->first.offset + (GetTypeInfo(i->first.type).bytes * i->first.count);
    
            if (invalidateEnd < rangeStart || invalidateStart > rangeEnd)
            {
                ++i;
            }
            else
            {
                mIndexRangeCache.erase(i++);
            }
        }
    }
    
    void IndexRangeCache::clear()
    {
        mIndexRangeCache.clear();
    }
    
    IndexRangeCache::IndexRangeKey::IndexRangeKey()
        : IndexRangeCache::IndexRangeKey(GL_NONE, 0, 0, false)
    {
    }
    
    IndexRangeCache::IndexRangeKey::IndexRangeKey(GLenum type_,
                                                  size_t offset_,
                                                  size_t count_,
                                                  bool primitiveRestartEnabled_)
        : type(type_), offset(offset_), count(count_), primitiveRestartEnabled(primitiveRestartEnabled_)
    {
    }
    
    bool IndexRangeCache::IndexRangeKey::operator<(const IndexRangeKey &rhs) const
    {
        if (type != rhs.type)
        {
            return type < rhs.type;
        }
        if (offset != rhs.offset)
        {
            return offset < rhs.offset;
        }
        if (count != rhs.count)
        {
            return count < rhs.count;
        }
        if (primitiveRestartEnabled != rhs.primitiveRestartEnabled)
        {
            return primitiveRestartEnabled;
        }
        return false;
    }
    
    }