From 3746ac21df90e44ed1ed9ec2f1e4694fbcd1d840 Mon Sep 17 00:00:00 2001 From: Ben Wagner Date: Thu, 29 Mar 2018 11:46:24 -0400 Subject: Remove path ranges from gpu. These appear to have been added to handle glyph paths with nvpr and no longer appear to be used. Change-Id: Id75e2e85ab837a5808e7641873d217c844cd827c Reviewed-on: https://skia-review.googlesource.com/117103 Reviewed-by: Chris Dalton Commit-Queue: Ben Wagner --- src/gpu/gl/GrGLPathRange.h | 66 ---------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 src/gpu/gl/GrGLPathRange.h (limited to 'src/gpu/gl/GrGLPathRange.h') diff --git a/src/gpu/gl/GrGLPathRange.h b/src/gpu/gl/GrGLPathRange.h deleted file mode 100644 index 7d920105a0..0000000000 --- a/src/gpu/gl/GrGLPathRange.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright 2014 Google Inc. - * - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#ifndef GrGLPathRange_DEFINED -#define GrGLPathRange_DEFINED - -#include "../GrPathRange.h" -#include "GrStyle.h" -#include "gl/GrGLTypes.h" - -class GrGLGpu; - -/** - * Currently this represents a range of GL_NV_path_rendering Path IDs. If we - * support other GL path extensions then this would have to have a type enum - * and/or be subclassed. - */ - -class GrGLPathRange : public GrPathRange { -public: - /** - * Initialize a GL path range from a PathGenerator. This class will allocate - * the GPU path objects and initialize them lazily. - */ - GrGLPathRange(GrGLGpu*, PathGenerator*, const GrStyle&); - - /** - * Initialize a GL path range from an existing range of pre-initialized GPU - * path objects. This class assumes ownership of the GPU path objects and - * will delete them when done. - */ - GrGLPathRange(GrGLGpu*, - GrGLuint basePathID, - int numPaths, - size_t gpuMemorySize, - const GrStyle&); - - GrGLuint basePathID() const { return fBasePathID; } - - bool shouldStroke() const { return fShouldStroke; } - bool shouldFill() const { return fShouldFill; } - -protected: - void onInitPath(int index, const SkPath&) const override; - - void onRelease() override; - void onAbandon() override; - -private: - void init(); - size_t onGpuMemorySize() const override { return fGpuMemorySize; } - - const GrStyle fStyle; - GrGLuint fBasePathID; - mutable size_t fGpuMemorySize; - bool fShouldStroke; - bool fShouldFill; - - typedef GrPathRange INHERITED; -}; - -#endif -- cgit v1.2.3