Home
last modified time | relevance | path

Searched refs:TextureBuffer (Results 1 – 21 of 21) sorted by relevance

/external/webrtc/sdk/android/api/org/webrtc/
DSurfaceTextureHelper.java24 import org.webrtc.VideoFrame.TextureBuffer;
40 void onNewBuffer(TextureBuffer textureBuffer); in onNewBuffer()
42 void onRetainBuffer(TextureBuffer textureBuffer); in onRetainBuffer()
44 void onReleaseBuffer(TextureBuffer textureBuffer); in onReleaseBuffer()
46 void onDestroyBuffer(TextureBuffer textureBuffer); in onDestroyBuffer()
335 public VideoFrame.I420Buffer textureToYuv(final TextureBuffer textureBuffer) {
372 final VideoFrame.TextureBuffer buffer =
373 new TextureBufferImpl(textureWidth, textureHeight, TextureBuffer.Type.OES, oesTextureId,
DYuvConverter.java17 import org.webrtc.VideoFrame.TextureBuffer;
125 public I420Buffer convert(TextureBuffer inputTextureBuffer) { in convert()
128 TextureBuffer preparedBuffer = (TextureBuffer) videoFrameDrawer.prepareBufferForViewportSize( in convert()
DVideoFrameDrawer.java32 public static void drawTexture(RendererCommon.GlDrawer drawer, VideoFrame.TextureBuffer buffer, in drawTexture()
199 final boolean isTextureFrame = frame.getBuffer() instanceof VideoFrame.TextureBuffer; in drawFrame()
213 drawTexture(drawer, (VideoFrame.TextureBuffer) frame.getBuffer(), renderMatrix, renderWidth, in drawFrame()
DTextureBufferImpl.java21 public class TextureBufferImpl implements VideoFrame.TextureBuffer {
86 public VideoFrame.TextureBuffer.Type getType() { in getType()
DVideoFrame.java96 public interface TextureBuffer extends Buffer { interface in VideoFrame
/external/deqp/framework/opengl/
DgluTexture.hpp284 class TextureBuffer class
287 TextureBuffer (const RenderContext& context, deUint32 internalFormat, size_t bufferSize);
288TextureBuffer (const RenderContext& context, deUint32 internalFormat, size_t bufferSize, size_t o…
290 ~TextureBuffer (void);
311 TextureBuffer (const TextureBuffer& other); // Not allowed!
312 TextureBuffer& operator= (const TextureBuffer& other); // Not allowed!
DgluTextureUtil.hpp37 class TextureBuffer;
93 tcu::PixelBufferAccess getTextureBufferEffectiveRefTexture (TextureBuffer& buffer, int maxTexture…
94 tcu::ConstPixelBufferAccess getTextureBufferEffectiveRefTexture (const TextureBuffer& buffer, int …
DgluTexture.cpp830 TextureBuffer::TextureBuffer (const RenderContext& context, deUint32 internalFormat, size_t bufferS… in TextureBuffer() function in glu::TextureBuffer
841 TextureBuffer::TextureBuffer (const RenderContext& context, deUint32 internalFormat, size_t bufferS… in TextureBuffer() function in glu::TextureBuffer
852 void TextureBuffer::init (deUint32 internalFormat, size_t bufferSize, size_t offset, size_t size, c… in init()
910 TextureBuffer::~TextureBuffer (void) in ~TextureBuffer()
920 const tcu::PixelBufferAccess TextureBuffer::getFullRefTexture (void) in getFullRefTexture()
931 const tcu::ConstPixelBufferAccess TextureBuffer::getFullRefTexture (void) const in getFullRefTexture()
933 return const_cast<TextureBuffer*>(this)->getFullRefTexture(); in getFullRefTexture()
936 void TextureBuffer::upload (void) in upload()
DgluTextureUtil.cpp1215 tcu::PixelBufferAccess getTextureBufferEffectiveRefTexture (TextureBuffer& buffer, int maxTextureBu…
1227 tcu::ConstPixelBufferAccess getTextureBufferEffectiveRefTexture (const TextureBuffer& buffer, int m… in getTextureBufferEffectiveRefTexture()
1229 …return getTextureBufferEffectiveRefTexture(const_cast<TextureBuffer&>(buffer), maxTextureBufferSiz… in getTextureBufferEffectiveRefTexture()
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DSurfaceTextureHelperTest.java36 private @Nullable VideoFrame.TextureBuffer textureBuffer;
54 this.textureBuffer = (VideoFrame.TextureBuffer) frame.getBuffer(); in onFrame()
61 public VideoFrame.TextureBuffer waitForTextureBuffer() throws InterruptedException { in waitForTextureBuffer()
64 final VideoFrame.TextureBuffer textureBufferToReturn = textureBuffer; in waitForTextureBuffer()
146 final VideoFrame.TextureBuffer textureBuffer = listener.waitForTextureBuffer(); in testThreeConstantColorFrames()
213 final VideoFrame.TextureBuffer textureBuffer = listener.waitForTextureBuffer(); in testLateReturnFrame()
474 final VideoFrame.TextureBuffer textureBuffer = listener.waitForTextureBuffer(); in testTexturetoYuv()
DVideoFrameBufferTest.java136 public static VideoFrame.TextureBuffer createRgbTextureBuffer( in createRgbTextureBuffer()
158 return new TextureBufferImpl(width, height, VideoFrame.TextureBuffer.Type.RGB, in createRgbTextureBuffer()
174 public static VideoFrame.TextureBuffer createOesTextureBuffer(
187 final VideoFrame.TextureBuffer oesBuffer =
203 final VideoFrame.TextureBuffer textureBuffer = listener.waitForTextureBuffer();
DHardwareVideoEncoderTest.java174 extends MockBufferBase implements VideoFrame.TextureBuffer {
183 public VideoFrame.TextureBuffer.Type getType() { in getType()
184 return VideoFrame.TextureBuffer.Type.OES; in getType()
DGlRectDrawerTest.java297 final VideoFrame.TextureBuffer textureBuffer = listener.waitForTextureBuffer();
/external/deqp/modules/glshared/
DglsTextureBufferCase.cpp424 glu::TextureBuffer& texture) in modifyBufferData()
444 glu::TextureBuffer& texture) in modifyBufferSubData()
467 glu::TextureBuffer& texture) in modifyMapWrite()
501 glu::TextureBuffer& texture) in modifyMapReadWrite()
556 glu::TextureBuffer& texture) in modify()
580 glu::TextureBuffer& texture) in renderGL()
659 const glu::TextureBuffer& texture, in renderReference()
763 glu::TextureBuffer& texture, in render()
899 glu::TextureBuffer texture (renderContext, format, bufferSize, offset, size, &(bufferData[0])); in runTests()
/external/deqp-deps/glslang/Test/
Dhlsl.texturebuffer.frag7 TextureBuffer<Data> TextureBuffer_var : register(t0);
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.texturebuffer.frag7 TextureBuffer<Data> TextureBuffer_var : register(t0);
/external/webrtc/sdk/android/src/java/org/webrtc/
DCameraSession.java57 static VideoFrame.TextureBuffer createTextureBufferWithModifiedTransformMatrix( in createTextureBufferWithModifiedTransformMatrix()
DHardwareVideoEncoder.java338 final boolean isTextureBuffer = videoFrameBuffer instanceof VideoFrame.TextureBuffer; in encode()
/external/webrtc/sdk/android/tests/src/org/webrtc/
DAndroidVideoDecoderTest.java47 import org.webrtc.VideoFrame.TextureBuffer.Type;
386 VideoFrame.TextureBuffer outputTextureBuffer = in testDeliversRenderedBuffers()
/external/deqp/modules/gles31/functional/
Des31fTextureFormatTests.cpp287 glu::TextureBuffer* m_texture;
332 m_texture = new glu::TextureBuffer(m_renderCtx, m_format, m_width * fmt.getPixelSize()); in init()
/external/angle/src/libGL/
Dentry_points_gl_4_autogen.cpp8557 ANGLE_CAPTURE(TextureBuffer, isCallValid, context, texturePacked, internalformat, in GL_TextureBuffer()