https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 40ee6ede3f615e6a20861bbbbb47a49283887d94 authored by ffxbld on 29 September 2015, 21:37:27 UTC
Added FIREFOX_41_0_1_RELEASE FIREFOX_41_0_1_BUILD2 tag(s) for changeset 76aad04b2a72. DONTBUILD CLOSED TREE a=release
Tip revision: 40ee6ed
HandleAllocator.h
//
// Copyright (c) 2002-2011 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.
//

// HandleAllocator.h: Defines the gl::HandleAllocator class, which is used to
// allocate GL handles.

#ifndef LIBGLESV2_HANDLEALLOCATOR_H_
#define LIBGLESV2_HANDLEALLOCATOR_H_

#include "common/angleutils.h"

#include "angle_gl.h"

#include <vector>

namespace gl
{

class HandleAllocator
{
  public:
    HandleAllocator();
    virtual ~HandleAllocator();

    void setBaseHandle(GLuint value);

    GLuint allocate();
    void release(GLuint handle);

  private:
    DISALLOW_COPY_AND_ASSIGN(HandleAllocator);

    GLuint mBaseValue;
    GLuint mNextValue;
    typedef std::vector<GLuint> HandleList;
    HandleList mFreeValues;
};

}

#endif   // LIBGLESV2_HANDLEALLOCATOR_H_
back to top