Home
last modified time | relevance | path

Searched refs:textureName (Results 1 – 24 of 24) sorted by relevance

/aosp12/frameworks/native/libs/renderengine/
H A DTexture.cpp25 Texture::Texture(Target textureTarget, uint32_t textureName) in Texture() argument
26 : mTextureName(textureName), in Texture()
32 void Texture::init(Target textureTarget, uint32_t textureName) { in init() argument
33 mTextureName = textureName; in init()
/aosp12/frameworks/av/media/libstagefright/renderfright/
H A DTexture.cpp25 Texture::Texture(Target textureTarget, uint32_t textureName) in Texture() argument
26 : mTextureName(textureName), in Texture()
32 void Texture::init(Target textureTarget, uint32_t textureName) { in init() argument
33 mTextureName = textureName; in init()
/aosp12/frameworks/av/media/libstagefright/renderfright/include/renderengine/
H A DLayerSettings.h47 uint32_t textureName = 0; member
160 lhs.textureName == rhs.textureName &&
199 *os << "\n .textureName = " << settings.textureName; in PrintTo()
H A DTexture.h32 Texture(Target textureTarget, uint32_t textureName);
35 void init(Target textureTarget, uint32_t textureName);
/aosp12/frameworks/native/libs/renderengine/include/renderengine/
H A DTexture.h32 Texture(Target textureTarget, uint32_t textureName);
35 void init(Target textureTarget, uint32_t textureName);
H A DLayerSettings.h49 uint32_t textureName = 0; member
180 lhs.textureName == rhs.textureName &&
232 *os << "\n .textureName = " << settings.textureName; in PrintTo()
/aosp12/frameworks/av/media/libstagefright/
H A DFrameCaptureLayer.cpp78 const Rect &sourceCrop, uint32_t textureName,
84 const Rect &sourceCrop, uint32_t textureName, in getLayerSettings() argument
96 layerSettings->source.buffer.textureName = textureName; in getLayerSettings()
/aosp12/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/
H A DRenderer.cpp212 void Renderer::SetInputTextureName(GLuint textureName) in SetInputTextureName() argument
214 mInputTextureName = textureName; in SetInputTextureName()
H A DRenderer.h26 void SetInputTextureName(GLuint textureName);
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/src/
H A DClientCompositionRequestCache.cpp44 return lhs.textureName == rhs.textureName && in equalIgnoringBuffer()
/aosp12/frameworks/native/services/surfaceflinger/
H A DSurfaceFlingerDefaultFactory.cpp106 uint32_t textureName, Layer* layer) { in createBufferLayerConsumer() argument
107 return new BufferLayerConsumer(consumer, renderEngine, textureName, layer); in createBufferLayerConsumer()
H A DBufferLayer.cpp67 mTextureName(args.textureName), in BufferLayer()
205 layer.source.buffer.textureName = mTextureName; in prepareClientComposition()
H A DBufferQueueLayer.cpp565 args.textureName = mTextureName; in createClone()
H A DLayer.h101 uint32_t textureName; member
H A DBufferStateLayer.cpp924 args.textureName = mTextureName; in createClone()
H A DSurfaceFlinger.cpp4440 args.textureName = getNewTexture(); in createBufferQueueLayer()
4465 args.textureName = getNewTexture(); in createBufferStateLayer()
/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/
H A DFrameCaptureProcessor.h48 const Rect &sourceCrop, uint32_t textureName,
/aosp12/frameworks/av/media/libstagefright/renderfright/gl/
H A DGLESRenderEngine.cpp883 uint32_t textureName = glFramebuffer->getTextureName(); in bindFrameBuffer() local
887 glBindTexture(GL_TEXTURE_2D, textureName); in bindFrameBuffer()
892 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textureName, 0); in bindFrameBuffer()
925 for (auto [textureName, bufferId] : mTextureView) { in cleanupPostRender()
927 glBindTexture(GL_TEXTURE_EXTERNAL_OES, textureName); in cleanupPostRender()
930 mTextureView[textureName] = std::nullopt; in cleanupPostRender()
1169 bindExternalTextureBuffer(layer->source.buffer.textureName, gBuf, in drawLayers()
1173 Texture texture(Texture::TEXTURE_EXTERNAL, layer->source.buffer.textureName); in drawLayers()
/aosp12/frameworks/av/media/codec2/hidl/plugin/samples/
H A DSampleFilterPlugin.cpp602 uint32_t textureName = 0; in processLoop() local
603 renderEngine->genTextures(1, &textureName); in processLoop()
708 layerSettings.source.buffer.textureName = textureName; in processLoop()
/aosp12/frameworks/av/media/libstagefright/renderfright/tests/
H A DRenderEngineTest.cpp436 layer.source.buffer.textureName = texName; in fillColor()
831 layer.source.buffer.textureName = texName; in fillRedBufferTextureTransform()
871 layer.source.buffer.textureName = texName; in fillRedBufferWithPremultiplyAlpha()
910 layer.source.buffer.textureName = texName; in fillRedBufferWithoutPremultiplyAlpha()
1454 uint32_t texName = layer.source.buffer.textureName; in TEST_F()
/aosp12/frameworks/native/libs/renderengine/gl/
H A DGLESRenderEngine.cpp948 uint32_t textureName = glFramebuffer->getTextureName(); in bindFrameBuffer() local
952 glBindTexture(GL_TEXTURE_2D, textureName); in bindFrameBuffer()
957 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textureName, 0); in bindFrameBuffer()
1238 bindExternalTextureBuffer(layer->source.buffer.textureName, gBuf, in drawLayers()
1242 Texture texture(Texture::TEXTURE_EXTERNAL, layer->source.buffer.textureName); in drawLayers()
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/
H A DTestableSurfaceFlinger.h126 uint32_t textureName, Layer* layer) override { in createBufferLayerConsumer() argument
127 return new BufferLayerConsumer(consumer, renderEngine, textureName, layer); in createBufferLayerConsumer()
H A DCompositionTest.cpp645 EXPECT_EQ(DEFAULT_TEXTURE_ID, layer->source.buffer.textureName); in setupREBufferCompositionCommonCallExpectations()
922 args.textureName = test->mFlinger.mutableTexturePool().back(); in createLayer()
/aosp12/frameworks/native/libs/renderengine/tests/
H A DRenderEngineTest.cpp624 layer.source.buffer.textureName = texName; in fillColor()
1104 layer.source.buffer.textureName = texName; in fillRedBufferTextureTransform()
1144 layer.source.buffer.textureName = texName; in fillRedBufferWithPremultiplyAlpha()
1183 layer.source.buffer.textureName = texName; in fillRedBufferWithoutPremultiplyAlpha()