Edit

kc3-lang/angle/src/libANGLE/ResourceManager.h

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2017-04-05 11:07:56
    Hash : 9aded17c
    Message : Invalidate completeness caches when enabling extensions. Enabling extensions can cause framebuffers and textures to go from incomplete to complete. No functional changes from the API surface. BUG=angleproject:1523 BUG=angleproject:1958 Change-Id: Iff686e1c292f6cf4921d6fffd7eb98bedaba828b Reviewed-on: https://chromium-review.googlesource.com/468410 Commit-Queue: Geoff Lang <geofflang@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>

  • src/libANGLE/ResourceManager.h
  • //
    // Copyright (c) 2002-2016 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.
    //
    
    // ResourceManager.h : Defines the ResourceManager classes, which handle allocation and lifetime of
    // GL objects.
    
    #ifndef LIBANGLE_RESOURCEMANAGER_H_
    #define LIBANGLE_RESOURCEMANAGER_H_
    
    #include "angle_gl.h"
    #include "common/angleutils.h"
    #include "libANGLE/angletypes.h"
    #include "libANGLE/Error.h"
    #include "libANGLE/HandleAllocator.h"
    #include "libANGLE/HandleRangeAllocator.h"
    
    namespace rx
    {
    class GLImplFactory;
    }
    
    namespace gl
    {
    class Buffer;
    struct Caps;
    class Context;
    class FenceSync;
    class Framebuffer;
    struct Limitations;
    class Path;
    class Program;
    class Renderbuffer;
    class Sampler;
    class Shader;
    class Texture;
    
    template <typename HandleAllocatorType>
    class ResourceManagerBase : angle::NonCopyable
    {
      public:
        ResourceManagerBase();
    
        void addRef();
        void release(const Context *context);
    
      protected:
        virtual void reset(const Context *context) = 0;
        virtual ~ResourceManagerBase() {}
    
        HandleAllocatorType mHandleAllocator;
    
      private:
        size_t mRefCount;
    };
    
    template <typename ResourceType, typename HandleAllocatorType, typename ImplT>
    class TypedResourceManager : public ResourceManagerBase<HandleAllocatorType>
    {
      public:
        TypedResourceManager() {}
    
        void deleteObject(const Context *context, GLuint handle);
    
      protected:
        ~TypedResourceManager() override;
    
        // Inlined in the header for performance.
        template <typename... ArgTypes>
        ResourceType *checkObjectAllocation(rx::GLImplFactory *factory, GLuint handle, ArgTypes... args)
        {
            auto objectMapIter = mObjectMap.find(handle);
    
            if (objectMapIter != mObjectMap.end() && objectMapIter->second != nullptr)
            {
                return objectMapIter->second;
            }
    
            if (handle == 0)
            {
                return nullptr;
            }
    
            return allocateObject<ArgTypes...>(objectMapIter, factory, handle, args...);
        }
    
        template <typename... ArgTypes>
        ResourceType *allocateObject(typename ResourceMap<ResourceType>::iterator &objectMapIter,
                                     rx::GLImplFactory *factory,
                                     GLuint handle,
                                     ArgTypes... args);
    
        void reset(const Context *context) override;
    
        ResourceMap<ResourceType> mObjectMap;
    };
    
    class BufferManager : public TypedResourceManager<Buffer, HandleAllocator, BufferManager>
    {
      public:
        GLuint createBuffer();
        Buffer *getBuffer(GLuint handle) const;
        bool isBufferGenerated(GLuint buffer) const;
    
        Buffer *checkBufferAllocation(rx::GLImplFactory *factory, GLuint handle)
        {
            return checkObjectAllocation(factory, handle);
        }
    
        // TODO(jmadill): Investigate design which doesn't expose these methods publicly.
        static Buffer *AllocateNewObject(rx::GLImplFactory *factory, GLuint handle);
        static void DeleteObject(Buffer *buffer);
    
      protected:
        ~BufferManager() override {}
    };
    
    class ShaderProgramManager : public ResourceManagerBase<HandleAllocator>
    {
      public:
        GLuint createShader(rx::GLImplFactory *factory,
                            const Limitations &rendererLimitations,
                            GLenum type);
        void deleteShader(const Context *context, GLuint shader);
        Shader *getShader(GLuint handle) const;
    
        GLuint createProgram(rx::GLImplFactory *factory);
        void deleteProgram(const Context *context, GLuint program);
        Program *getProgram(GLuint handle) const;
    
      protected:
        ~ShaderProgramManager() override;
    
      private:
        template <typename ObjectType>
        void deleteObject(const Context *context, ResourceMap<ObjectType> *objectMap, GLuint id);
    
        void reset(const Context *context) override;
    
        ResourceMap<Shader> mShaders;
        ResourceMap<Program> mPrograms;
    };
    
    class TextureManager : public TypedResourceManager<Texture, HandleAllocator, TextureManager>
    {
      public:
        GLuint createTexture();
        Texture *getTexture(GLuint handle) const;
        bool isTextureGenerated(GLuint texture) const;
    
        void invalidateTextureComplenessCache();
    
        Texture *checkTextureAllocation(rx::GLImplFactory *factory, GLuint handle, GLenum target)
        {
            return checkObjectAllocation(factory, handle, target);
        }
    
        static Texture *AllocateNewObject(rx::GLImplFactory *factory, GLuint handle, GLenum target);
        static void DeleteObject(Texture *texture);
    
      protected:
        ~TextureManager() override {}
    };
    
    class RenderbufferManager
        : public TypedResourceManager<Renderbuffer, HandleAllocator, RenderbufferManager>
    {
      public:
        GLuint createRenderbuffer();
        Renderbuffer *getRenderbuffer(GLuint handle);
        bool isRenderbufferGenerated(GLuint renderbuffer) const;
    
        Renderbuffer *checkRenderbufferAllocation(rx::GLImplFactory *factory, GLuint handle)
        {
            return checkObjectAllocation(factory, handle);
        }
    
        static Renderbuffer *AllocateNewObject(rx::GLImplFactory *factory, GLuint handle);
        static void DeleteObject(Renderbuffer *renderbuffer);
    
      protected:
        ~RenderbufferManager() override {}
    };
    
    class SamplerManager : public TypedResourceManager<Sampler, HandleAllocator, SamplerManager>
    {
      public:
        GLuint createSampler();
        Sampler *getSampler(GLuint handle);
        bool isSampler(GLuint sampler);
    
        Sampler *checkSamplerAllocation(rx::GLImplFactory *factory, GLuint handle)
        {
            return checkObjectAllocation(factory, handle);
        }
    
        static Sampler *AllocateNewObject(rx::GLImplFactory *factory, GLuint handle);
        static void DeleteObject(Sampler *sampler);
    
      protected:
        ~SamplerManager() override {}
    };
    
    class FenceSyncManager : public TypedResourceManager<FenceSync, HandleAllocator, FenceSyncManager>
    {
      public:
        GLuint createFenceSync(rx::GLImplFactory *factory);
        FenceSync *getFenceSync(GLuint handle);
    
        static void DeleteObject(FenceSync *fenceSync);
    
      protected:
        ~FenceSyncManager() override {}
    };
    
    class PathManager : public ResourceManagerBase<HandleRangeAllocator>
    {
      public:
        ErrorOrResult<GLuint> createPaths(rx::GLImplFactory *factory, GLsizei range);
        void deletePaths(GLuint first, GLsizei range);
        Path *getPath(GLuint handle) const;
        bool hasPath(GLuint handle) const;
    
      protected:
        ~PathManager() override;
        void reset(const Context *context) override;
    
      private:
        ResourceMap<Path> mPaths;
    };
    
    class FramebufferManager
        : public TypedResourceManager<Framebuffer, HandleAllocator, FramebufferManager>
    {
      public:
        GLuint createFramebuffer();
        Framebuffer *getFramebuffer(GLuint handle) const;
        void setDefaultFramebuffer(Framebuffer *framebuffer);
        bool isFramebufferGenerated(GLuint framebuffer);
    
        void invalidateFramebufferComplenessCache();
    
        Framebuffer *checkFramebufferAllocation(rx::GLImplFactory *factory,
                                                const Caps &caps,
                                                GLuint handle)
        {
            return checkObjectAllocation<const Caps &>(factory, handle, caps);
        }
    
        static Framebuffer *AllocateNewObject(rx::GLImplFactory *factory,
                                              GLuint handle,
                                              const Caps &caps);
        static void DeleteObject(Framebuffer *framebuffer);
    
      protected:
        ~FramebufferManager() override {}
    };
    
    }  // namespace gl
    
    #endif // LIBANGLE_RESOURCEMANAGER_H_