Home
last modified time | relevance | path

Searched refs:texture (Results 1 – 23 of 23) sorted by relevance

/development/samples/browseable/Camera2Video/src/com.example.android.camera2video/
DCamera2VideoFragment.java284 mTextureView = (AutoFitTextureView) view.findViewById(R.id.texture); in onViewCreated()
492 SurfaceTexture texture = mTextureView.getSurfaceTexture(); in startPreview() local
493 assert texture != null; in startPreview()
494 texture.setDefaultBufferSize(mPreviewSize.getWidth(), mPreviewSize.getHeight()); in startPreview()
497 Surface previewSurface = new Surface(texture); in startPreview()
614 SurfaceTexture texture = mTextureView.getSurfaceTexture(); in startRecordingVideo() local
615 assert texture != null; in startRecordingVideo()
616 texture.setDefaultBufferSize(mPreviewSize.getWidth(), mPreviewSize.getHeight()); in startRecordingVideo()
621 Surface previewSurface = new Surface(texture); in startRecordingVideo()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DFrameBufferObjectActivity.java175 int texture; in createTargetTexture() local
178 texture = textures[0]; in createTargetTexture()
179 gl.glBindTexture(GL10.GL_TEXTURE_2D, texture); in createTargetTexture()
191 ; return texture; in createTargetTexture()
/development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
DCamera2BasicFragment.java139 public void onSurfaceTextureAvailable(SurfaceTexture texture, int width, int height) {
144 public void onSurfaceTextureSizeChanged(SurfaceTexture texture, int width, int height) {
149 public boolean onSurfaceTextureDestroyed(SurfaceTexture texture) {
154 public void onSurfaceTextureUpdated(SurfaceTexture texture) {
431 mTextureView = (AutoFitTextureView) view.findViewById(R.id.texture); in onViewCreated()
677 SurfaceTexture texture = mTextureView.getSurfaceTexture(); in createCameraPreviewSession() local
678 assert texture != null; in createCameraPreviewSession()
681 texture.setDefaultBufferSize(mPreviewSize.getWidth(), mPreviewSize.getHeight()); in createCameraPreviewSession()
684 Surface surface = new Surface(texture); in createCameraPreviewSession()
/development/ndk/platforms/android-5/include/GLES2/
Dgl2ext.h494 …Texture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLi…
501 …EXTURE3DOES) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLi…
689 …ltisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
692 …TISAMPLEIMG) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
763 GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint lev…
772 typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GL…
Dgl2.h474 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
480 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
521 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
561 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
/development/ndk/platforms/android-24/include/GLES2/
Dgl2ext.h389 …YP PFNGLFRAMEBUFFERTEXTUREOESPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level);
391 …L_APIENTRY glFramebufferTextureOES (GLenum target, GLenum attachment, GLuint texture, GLint level);
581 …RE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLi…
588 …Texture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLi…
724 typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWOESPROC) (GLuint texture, GLenum target, GLuint origtext…
726 GL_APICALL void GL_APIENTRY glTextureViewOES (GLuint texture, GLenum target, GLuint origtexture, GL…
1317 …YP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level);
1319 …L_APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level);
1385 …MPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
1388 …ltisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
[all …]
Dgl2.h385 typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);
391 typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);
432 …ERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
472 typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture);
528 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
534 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
575 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
615 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/
DCamera2RawFragment.java211 public void onSurfaceTextureAvailable(SurfaceTexture texture, int width, int height) {
216 public void onSurfaceTextureSizeChanged(SurfaceTexture texture, int width, int height) {
221 public boolean onSurfaceTextureDestroyed(SurfaceTexture texture) {
229 public void onSurfaceTextureUpdated(SurfaceTexture texture) {
612 mTextureView = (AutoFitTextureView) view.findViewById(R.id.texture); in onViewCreated()
922 SurfaceTexture texture = mTextureView.getSurfaceTexture(); in createCameraPreviewSessionLocked() local
924 texture.setDefaultBufferSize(mPreviewSize.getWidth(), mPreviewSize.getHeight()); in createCameraPreviewSessionLocked()
927 Surface surface = new Surface(texture); in createCameraPreviewSessionLocked()
/development/ndk/platforms/android-21/include/GLES2/
Dgl2ext.h364 …RE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLi…
371 …Texture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLi…
911 …YP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level);
913 …L_APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level);
963 …MPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
966 …ltisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
1356 typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei le…
1357 typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei le…
1358 typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei le…
1363 GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, G…
[all …]
Dgl2.h377 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
383 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
424 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
464 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixTrackingGL.java81 public void glActiveTexture(int texture) { in glActiveTexture() argument
82 mgl.glActiveTexture(texture); in glActiveTexture()
93 public void glBindTexture(int target, int texture) { in glBindTexture() argument
94 mgl.glBindTexture(target, texture); in glBindTexture()
125 public void glClientActiveTexture(int texture) { in glClientActiveTexture() argument
126 mgl.glClientActiveTexture(texture); in glClientActiveTexture()
913 public boolean glIsTexture(int texture) { in glIsTexture() argument
/development/ndk/platforms/android-4/include/GLES/
Dglext.h628 …fferTexture2DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
644 …EXTURE2DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
902 …ltisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
905 …TISAMPLEIMG) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLs…
960 GL_API void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, …
969 typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GL…
Dgl.h633 GL_API void GL_APIENTRY glActiveTexture (GLenum texture);
636 GL_API void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
644 GL_API void GL_APIENTRY glClientActiveTexture (GLenum texture);
691 GL_API GLboolean GL_APIENTRY glIsTexture (GLuint texture);
/development/ndk/platforms/android-24/include/GLES3/
Dgl3.h385 typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);
391 typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);
432 …ERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
472 typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture);
528 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
534 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
575 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
615 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
1022 …GLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
1127 …NTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
Dgl32.h385 typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);
391 typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);
432 …ERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
472 typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture);
528 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
534 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
575 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
615 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
1022 …GLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
1127 …NTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
[all …]
Dgl31.h385 typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);
391 typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);
432 …ERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
472 typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture);
528 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
534 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
575 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
615 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
1022 …GLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
1127 …NTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
[all …]
/development/ndk/platforms/android-21/include/GLES3/
Dgl3.h377 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
383 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
424 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
464 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
854 …NTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
Dgl31.h377 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
383 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
424 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
464 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
854 …NTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
1164 GL_APICALL void GL_APIENTRY glBindImageTexture (GLuint unit, GLuint texture, GLint level, GLboolean…
/development/ndk/platforms/android-18/include/GLES3/
Dgl3.h807 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture);
813 GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture);
854 …ebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
894 GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture);
977 …NTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
/development/ndk/sources/android/ndk_helper/
Dgl3stub.c285 GLuint texture,
Dgl3stub.h420 …TRY glFramebufferTextureLayer) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
/development/ndk/platforms/android-18/samples/gles3jni/jni/
Dgl3stub.h410 …TRY glFramebufferTextureLayer) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…
Dgl3stub.c265 …TRY glFramebufferTextureLayer) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLi…