Searched refs:unbindExternalTextureBuffer (Results 1 – 8 of 8) sorted by relevance
91 TEST_F(RenderEngineThreadedTest, unbindExternalTextureBuffer) { in TEST_F() argument92 EXPECT_CALL(*mRenderEngine, unbindExternalTextureBuffer(0x0)); in TEST_F()93 mThreadedRE->unbindExternalTextureBuffer(0x0); in TEST_F()
50 MOCK_METHOD1(unbindExternalTextureBuffer, void(uint64_t));
56 void unbindExternalTextureBuffer(uint64_t bufferId) override;
227 void RenderEngineThreaded::unbindExternalTextureBuffer(uint64_t bufferId) { in unbindExternalTextureBuffer() function in android::renderengine::threaded::RenderEngineThreaded234 instance.unbindExternalTextureBuffer(bufferId); in unbindExternalTextureBuffer()
118 virtual void unbindExternalTextureBuffer(uint64_t bufferId) = 0;
67 void unbindExternalTextureBuffer(uint64_t bufferId) EXCLUDES(mRenderingMutex);
743 void GLESRenderEngine::unbindExternalTextureBuffer(uint64_t bufferId) { in unbindExternalTextureBuffer() function in android::renderengine::gl::GLESRenderEngine
227 renderEngine->unbindExternalTextureBuffer(mFdp.ConsumeIntegral<uint64_t>()); in process()