/frameworks/base/core/java/android/hardware/camera2/params/ |
StreamConfigurationMap.java | 297 int internalFormat = imageFormatToInternal(format); 300 return mDepthOutputFormats.indexOfKey(internalFormat) >= 0; 302 return getFormatsMap(/*output*/true).indexOfKey(internalFormat) >= 0; [all...] |
/frameworks/base/core/jni/ |
android_opengl_GLES10.cpp | 623 /* void glCompressedTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ) */ 626 (JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint width, jint height, jint border, jint imageSize, jobject data_buf) { 640 (GLenum)internalformat, 682 /* void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) */ 685 (JNIEnv *_env, jobject _this, jint target, jint level, jint internalformat, jint x, jint y, jint width, jint height, jint border) { 689 (GLenum)internalformat, [all...] |
/external/deqp/framework/opengl/simplereference/ |
sglrReferenceContext.cpp | 951 static tcu::TextureFormat mapInternalFormat (deUint32 internalFormat) 953 switch (internalFormat) 962 return glu::mapGLInternalFormat(internalFormat); [all...] |
/external/deqp/framework/opengl/ |
gluTextureUtil.cpp | 346 bool isCompressedFormat (deUint32 internalFormat) 348 switch (internalFormat) 466 * \param internalFormat Sized internal format. 469 tcu::TextureFormat mapGLInternalFormat (deUint32 internalFormat) 472 switch (internalFormat) 548 throw tcu::InternalError(string("Can't map GL sized internal format (") + tcu::toHex(internalFormat).toString() + ") to texture format"); [all...] |
/external/deqp/framework/platform/null/ |
tcuNullRenderContext.cpp | 424 GLW_APICALL void GLW_APIENTRY glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint* params) 428 DE_UNREF(internalformat);
|
/external/deqp/modules/gles3/functional/ |
es3fFboCompletenessTests.cpp | 298 texCfg->internalFormat = getDefaultFormat(target, GL_TEXTURE); 417 rboCfg.internalFormat = fmt;
|
/external/deqp/modules/glshared/ |
glsLongStressCase.hpp | 140 deUint32 internalFormat; 169 , internalFormat (internalFormat_)
|
/external/icu/icu4c/source/test/intltest/ |
tmsgfmt.cpp | 641 internalFormat( 646 void TestMessageFormat::internalFormat(MessageFormat* msgFmt , 703 internalFormat( msgFmt1 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t1"); 725 internalFormat( msgFmt2 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t2"); 747 internalFormat( msgFmt3 , testArgs[i], 1, exp[i] ,(char*)"From TestMessageFormat::testSelectFormat format t3"); 770 internalFormat( msgFmt4 , testArgs[i], 3, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t4"); 794 internalFormat( msgFmt5 , testArgs[i], 3, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t5"); [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_clear.c | 305 GLboolean is_integer = _mesa_is_enum_format_integer(rb->InternalFormat); 548 GLboolean is_integer = _mesa_is_enum_format_integer(rb->InternalFormat);
|
st_gen_mipmap.c | 250 dstDepth, border, srcImage->InternalFormat,
|
/device/generic/goldfish/opengl/system/GLESv2_enc/ |
GL2Encoder.h | 240 static void s_glTexImage2D(void* self, GLenum target, GLint level, GLint internalformat,
|
/external/mesa3d/docs/ |
MESA_texture_array.spec | 136 Accepted by the <internalformat> parameter of TexImage3D and 168 void TexImage3D(enum target, int level, int internalformat, 196 int internalformat, sizei width, sizei height, 234 enum internalformat, int x, int y, sizei width, [all...] |
MESA_texture_signed_rgba.spec | 186 Accepted by the <internalformat> parameter of
|
/external/mesa3d/src/mesa/drivers/osmesa/ |
osmesa.c | 403 GLenum internalFormat, GLuint width, GLuint height) 407 /* Note: we can ignoring internalFormat for "window-system" renderbuffers */ 408 (void) internalFormat; 523 srb->Base.InternalFormat = GL_RGBA; [all...] |
/development/ndk/platforms/android-4/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/external/deqp/modules/gles31/functional/ |
es31fTextureFilteringTests.cpp | 109 deUint32 internalFormat, 172 deUint32 internalFormat, 181 , m_internalFormat (internalFormat)
|
/external/mesa3d/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/frameworks/native/opengl/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |
/prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/GLES/ |
gl.h | 650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); 652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); 730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) [all...] |