HomeSort by relevance Sort by last modified time
    Searched refs:textureFormat (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/angle/src/libEGL/
Display.cpp 283 EGLenum textureFormat = EGL_NO_TEXTURE;
309 textureFormat = attribList[1];
352 if (textureFormat != EGL_NO_TEXTURE && !mRenderer->getRendererExtensions().textureNPOT && (!gl::isPow2(width) || !gl::isPow2(height)))
357 if ((textureFormat != EGL_NO_TEXTURE && textureTarget == EGL_NO_TEXTURE) ||
358 (textureFormat == EGL_NO_TEXTURE && textureTarget != EGL_NO_TEXTURE))
368 if ((textureFormat == EGL_TEXTURE_RGB && configuration->mBindToTextureRGB != EGL_TRUE) ||
369 (textureFormat == EGL_TEXTURE_RGBA && configuration->mBindToTextureRGBA != EGL_TRUE))
380 Surface *surface = new Surface(this, configuration, shareHandle, width, height, textureFormat, textureTarget);
Surface.h 37 Surface(Display *display, const egl::Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureTarget);
Surface.cpp 50 Surface::Surface(Display *display, const Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureType)
57 mTextureFormat = textureFormat;
  /external/deqp/framework/common/
tcuImageIO.cpp 107 TextureFormat textureFormat;
114 textureFormat = TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8);
116 textureFormat = TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp 107 static inline bool isDepthFormat (const tcu::TextureFormat& fmt)
109 return fmt.order == tcu::TextureFormat::D || fmt.order == tcu::TextureFormat::DS;
112 static inline bool isUnormFormatType (tcu::TextureFormat::ChannelType type)
114 return type == tcu::TextureFormat::UNORM_INT8 ||
115 type == tcu::TextureFormat::UNORM_INT16 ||
116 type == tcu::TextureFormat::UNORM_INT32;
119 static inline bool isSIntFormatType (tcu::TextureFormat::ChannelType type)
121 return type == tcu::TextureFormat::SIGNED_INT8 ||
122 type == tcu::TextureFormat::SIGNED_INT16 |
    [all...]
es31fShaderImageLoadStoreTests.cpp 67 using tcu::TextureFormat;
134 static inline bool isFormatTypeUnsignedInteger (TextureFormat::ChannelType type)
136 return type == TextureFormat::UNSIGNED_INT8 ||
137 type == TextureFormat::UNSIGNED_INT16 ||
138 type == TextureFormat::UNSIGNED_INT32;
141 static inline bool isFormatTypeSignedInteger (TextureFormat::ChannelType type)
143 return type == TextureFormat::SIGNED_INT8 ||
144 type == TextureFormat::SIGNED_INT16 ||
145 type == TextureFormat::SIGNED_INT32;
148 static inline bool isFormatTypeInteger (TextureFormat::ChannelType type
    [all...]
  /external/deqp/modules/egl/
teglQuerySurfaceTests.cpp 414 const EGLint textureFormat = surface.getAttribute(EGL_TEXTURE_FORMAT);
416 if (textureFormat != EGL_NO_TEXTURE && textureFormat != EGL_TEXTURE_RGB && textureFormat != EGL_TEXTURE_RGBA)
418 log << TestLog::Message << " Fail, invalid texture format value " << textureFormat << TestLog::EndMessage;
  /external/chromium_org/third_party/mesa/src/src/glx/
glx_pbuffer.c 216 pdraw->textureFormat = determineTextureFormat(attrib_list, num_attribs);
354 if (pdraw != NULL && !pdraw->textureFormat)
355 pdraw->textureFormat =
glxclient.h 138 GLenum textureFormat; /* EXT_texture_from_pixmap support */
drisw_glx.c 321 pdraw->base.textureFormat,
dri2_glx.c 904 pdraw->base.textureFormat,
    [all...]
  /external/mesa3d/src/glx/
glx_pbuffer.c 216 pdraw->textureFormat = determineTextureFormat(attrib_list, num_attribs);
354 if (pdraw != NULL && !pdraw->textureFormat)
355 pdraw->textureFormat =
glxclient.h 138 GLenum textureFormat; /* EXT_texture_from_pixmap support */
drisw_glx.c 321 pdraw->base.textureFormat,
dri2_glx.c 904 pdraw->base.textureFormat,
    [all...]
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
validationES2.cpp 524 GLenum textureFormat = gl::GetInternalFormatInfo(textureInternalFormat).format;
529 switch (textureFormat)
validationES3.cpp     [all...]
  /external/deqp/modules/gles3/stress/
es3sSpecialFloatTests.cpp     [all...]
  /external/deqp/modules/gles2/functional/
es2fTextureSpecificationTests.cpp 62 tcu::TextureFormat mapGLUnsizedInternalFormat (deUint32 internalFormat)
64 using tcu::TextureFormat;
67 case GL_ALPHA: return TextureFormat(TextureFormat::A, TextureFormat::UNORM_INT8);
68 case GL_LUMINANCE: return TextureFormat(TextureFormat::L, TextureFormat::UNORM_INT8);
69 case GL_LUMINANCE_ALPHA: return TextureFormat(TextureFormat::LA, TextureFormat::UNORM_INT8)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSpecificationTests.cpp 66 tcu::TextureFormat mapGLUnsizedInternalFormat (deUint32 internalFormat)
68 using tcu::TextureFormat;
71 case GL_ALPHA: return TextureFormat(TextureFormat::A, TextureFormat::UNORM_INT8);
72 case GL_LUMINANCE: return TextureFormat(TextureFormat::L, TextureFormat::UNORM_INT8);
73 case GL_LUMINANCE_ALPHA: return TextureFormat(TextureFormat::LA, TextureFormat::UNORM_INT8)
    [all...]

Completed in 2207 milliseconds