Remove some comments regarding caching protected buffers
We thought we'd be able to share buffers across contexts but by trial
and error (i.e. the bugs listed below) we've found that we cannot.
Bug: 242266174
Bug: 294357792
Bug: 271907068
Bug: 264475961
Bug: 267295152
Test: These are just comment changes.
Change-Id: I52e1d831f2d195cddb21c2e7a1e820059fe2a137
diff --git a/libs/renderengine/skia/SkiaRenderEngine.cpp b/libs/renderengine/skia/SkiaRenderEngine.cpp
index 2484650..75a7fcb 100644
--- a/libs/renderengine/skia/SkiaRenderEngine.cpp
+++ b/libs/renderengine/skia/SkiaRenderEngine.cpp
@@ -405,9 +405,7 @@
// If we were to support caching protected buffers then we will need to switch the
// currently bound context if we are not already using the protected context (and subsequently
- // switch back after the buffer is cached). However, for non-protected content we can bind
- // the texture in either GL context because they are initialized with the same share_context
- // which allows the texture state to be shared between them.
+ // switch back after the buffer is cached).
auto context = getActiveContext();
auto& cache = mTextureCache;