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

1 2

  /external/swiftshader/src/OpenGL/libEGL/
Surface.h 92 EGLenum textureFormat; // Format of texture: RGB, RGBA, or no texture
124 PBufferSurface(Display *display, const egl::Config *config, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureTarget, EGLBoolean largestPBuffer);
Surface.cpp 54 textureFormat = EGL_NO_TEXTURE;
207 return textureFormat;
346 PBufferSurface::PBufferSurface(Display *display, const Config *config, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureType, EGLBoolean largestPBuffer)
Display.cpp 325 EGLenum textureFormat = EGL_NO_TEXTURE;
351 textureFormat = attribList[1];
396 if((textureFormat != EGL_NO_TEXTURE && textureTarget == EGL_NO_TEXTURE) ||
397 (textureFormat == EGL_NO_TEXTURE && textureTarget != EGL_NO_TEXTURE))
407 if((textureFormat == EGL_TEXTURE_RGB && configuration->mBindToTextureRGB != EGL_TRUE) ||
408 (textureFormat == EGL_TEXTURE_RGBA && configuration->mBindToTextureRGBA != EGL_TRUE))
413 Surface *surface = new PBufferSurface(this, configuration, width, height, textureFormat, textureTarget, largestPBuffer);
  /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/swiftshader/src/OpenGL/libGL/
Surface.h 45 Surface(Display *display, GLint width, GLint height, GLenum textureFormat, GLenum textureTarget);
Surface.cpp 50 Surface::Surface(Display *display, GLint width, GLint height, GLenum textureFormat, GLenum textureType)
58 mTextureFormat = textureFormat;
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureGatherTests.cpp 188 static inline bool isDepthFormat (const tcu::TextureFormat& fmt)
190 return fmt.order == tcu::TextureFormat::D || fmt.order == tcu::TextureFormat::DS;
193 static inline bool isUnormFormatType (tcu::TextureFormat::ChannelType type)
195 return type == tcu::TextureFormat::UNORM_INT8 ||
196 type == tcu::TextureFormat::UNORM_INT16 ||
197 type == tcu::TextureFormat::UNORM_INT32;
200 static inline bool isSIntFormatType (tcu::TextureFormat::ChannelType type)
202 return type == tcu::TextureFormat::SIGNED_INT8 ||
203 type == tcu::TextureFormat::SIGNED_INT16 |
    [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;
135 static inline bool isFormatTypeUnsignedInteger (TextureFormat::ChannelType type)
137 return type == TextureFormat::UNSIGNED_INT8 ||
138 type == TextureFormat::UNSIGNED_INT16 ||
139 type == TextureFormat::UNSIGNED_INT32;
142 static inline bool isFormatTypeSignedInteger (TextureFormat::ChannelType type)
144 return type == TextureFormat::SIGNED_INT8 ||
145 type == TextureFormat::SIGNED_INT16 ||
146 type == TextureFormat::SIGNED_INT32;
149 static inline bool isFormatTypeInteger (TextureFormat::ChannelType type
    [all...]
  /external/swiftshader/src/Renderer/
Sampler.hpp 142 Format textureFormat : BITS(FORMAT_LAST);
Sampler.cpp 89 state.textureFormat = internalTextureFormat;
  /external/deqp/modules/egl/
teglQuerySurfaceTests.cpp 419 const EGLint textureFormat = eglu::querySurfaceInt(egl, display, *surface, EGL_TEXTURE_FORMAT);
421 if (textureFormat != EGL_NO_TEXTURE && textureFormat != EGL_TEXTURE_RGB && textureFormat != EGL_TEXTURE_RGBA)
423 log << TestLog::Message << " Fail, invalid texture format value " << textureFormat << TestLog::EndMessage;
  /external/swiftshader/src/Shader/
SamplerCore.cpp 142 switch(state.textureFormat)
189 switch(state.textureFormat)
365 switch(state.textureFormat)
391 switch(state.textureFormat)
445 switch(state.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/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.cpp 217 const tcu::TextureFormat tcuFormat = mapVkFormat(format);
363 VkImageAspectFlags getImageAspectFlags (const tcu::TextureFormat textureFormat)
367 if (tcu::hasDepthComponent(textureFormat.order))
370 if (tcu::hasStencilComponent(textureFormat.order))
388 tcu::TextureFormat format,
592 tcu::TextureFormat format;
594 case tcu::TextureFormat::UNSIGNED_INT_16_8_8:
595 format = tcu::TextureFormat(tcu::TextureFormat::D, tcu::TextureFormat::UNORM_INT16)
    [all...]
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.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...]
  /external/swiftshader/src/OpenGL/libGLESv2/
libGLESv3.cpp 56 static bool validateColorBufferFormat(GLenum textureFormat, GLenum colorbufferFormat)
58 GLenum validationError = ValidateCompressedFormat(textureFormat, egl::getClientVersion(), false);
64 switch(textureFormat)
787 GLenum textureFormat = texture->getFormat(target, level);
789 if(!validateColorBufferFormat(textureFormat, colorbufferFormat))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureFilteringTests.cpp 194 const tcu::TextureFormat texFmt = texture.getTextureFormat();
403 const tcu::TextureFormat texFmt = texture.getTextureFormat();
596 const tcu::TextureFormat texFmt = texture.getTextureFormat();
774 const tcu::TextureFormat texFmt = texture.getTextureFormat();
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp     [all...]

Completed in 3872 milliseconds

1 2