Home
last modified time | relevance | path

Searched refs:textureFormat (Results 1 – 25 of 535) sorted by relevance

12345678910>>...22

/dports/x11/glcapsviewer/glCapsViewer-26e160c/
H A DinternalFormatTarget.cpp52 for (auto& textureFormat : textureFormats) { in getInternalFormatInfo() local
56 …glGetInternalformativ(target, textureFormat.textureFormat, GL_INTERNALFORMAT_SUPPORTED, 1, &format… in getInternalFormatInfo()
57 textureFormat.supported = (formatSupported == GL_TRUE); in getInternalFormatInfo()
59 if (!textureFormat.supported) { in getInternalFormatInfo()
76 …glGetInternalformativ(target, textureFormat.textureFormat, GL_TEXTURE_COMPRESSED, 1, &compressedFo… in getInternalFormatInfo()
86 textureFormat.addValueInfo(infoTypeValue, GL_MAX_WIDTH, "GL_MAX_WIDTH"); in getInternalFormatInfo()
87 textureFormat.addValueInfo(infoTypeValue, GL_MAX_HEIGHT, "GL_MAX_HEIGHT"); in getInternalFormatInfo()
88 textureFormat.addValueInfo(infoTypeValue, GL_MAX_DEPTH, "GL_MAX_DEPTH"); in getInternalFormatInfo()
93 textureFormat.addValueInfo(infoTypeValue, GL_FILTER, "GL_FILTER"); in getInternalFormatInfo()
111 for (auto& formatInfoValue : textureFormat.formatInfoValues) { in getInternalFormatInfo()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/opengl/
H A Dqglpixelbuffer_egl.cpp72 textureFormat = EGL_NONE; in init()
78 textureFormat = EGL_TEXTURE_RGBA; in init()
80 textureFormat = EGL_TEXTURE_RGB; in init()
89 textureFormat = EGL_TEXTURE_RGBA; in init()
94 textureFormat = EGL_TEXTURE_RGB; in init()
101 textureFormat = EGL_NONE; in init()
122 if (textureFormat != EGL_NONE) { in init()
123 attribs.setValue(EGL_TEXTURE_FORMAT, textureFormat); in init()
131 if (pbuf == EGL_NO_SURFACE && textureFormat != EGL_NONE) { in init()
133 textureFormat = EGL_NONE; in init()
[all …]
/dports/x11/plasma5-kwayland-server/kwayland-server-5.23.5/src/server/
H A Ddrmclientbuffer.cpp26 int textureFormat = 0; member in KWaylandServer::DrmClientBufferPrivate
39 if (!eglQueryWaylandBufferWL(eglDisplay, resource, EGL_TEXTURE_FORMAT, &d->textureFormat)) { in DrmClientBuffer()
42 d->textureFormat = EGL_TEXTURE_RGBA; in DrmClientBuffer()
54 int DrmClientBuffer::textureFormat() const in textureFormat() function in KWaylandServer::DrmClientBuffer
57 return d->textureFormat; in textureFormat()
69 return d->textureFormat == EGL_TEXTURE_RGBA; in hasAlphaChannel()
/dports/java/java3d/java3d-1.5.2/j3d-core-utils/src/classes/share/com/sun/j3d/utils/image/
H A DTextureLoader.java124 private int textureFormat = Texture.RGBA; field in TextureLoader
629 textureFormat = Texture.RGBA; in chooseFormat()
635 textureFormat = Texture.RGB; in chooseFormat()
772 textureFormat = Texture.RGBA; in parseFormat()
776 textureFormat = Texture.RGBA; in parseFormat()
780 textureFormat = Texture.RGBA; in parseFormat()
784 textureFormat = Texture.RGB; in parseFormat()
788 textureFormat = Texture.RGB; in parseFormat()
792 textureFormat = Texture.RGB; in parseFormat()
796 textureFormat = Texture.RGB; in parseFormat()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/
H A DRenderBundleEncoder.cpp29 wgpu::TextureFormat textureFormat) { in ValidateColorAttachmentFormat() argument
30 DAWN_TRY(ValidateTextureFormat(textureFormat)); in ValidateColorAttachmentFormat()
32 DAWN_TRY_ASSIGN(format, device->GetInternalFormat(textureFormat)); in ValidateColorAttachmentFormat()
41 wgpu::TextureFormat textureFormat) { in ValidateDepthStencilAttachmentFormat() argument
42 DAWN_TRY(ValidateTextureFormat(textureFormat)); in ValidateDepthStencilAttachmentFormat()
44 DAWN_TRY_ASSIGN(format, device->GetInternalFormat(textureFormat)); in ValidateDepthStencilAttachmentFormat()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/dawn_native/
H A DRenderBundleEncoder.cpp29 wgpu::TextureFormat textureFormat) { in ValidateColorAttachmentFormat() argument
30 DAWN_TRY(ValidateTextureFormat(textureFormat)); in ValidateColorAttachmentFormat()
32 DAWN_TRY_ASSIGN(format, device->GetInternalFormat(textureFormat)); in ValidateColorAttachmentFormat()
41 wgpu::TextureFormat textureFormat) { in ValidateDepthStencilAttachmentFormat() argument
42 DAWN_TRY(ValidateTextureFormat(textureFormat)); in ValidateDepthStencilAttachmentFormat()
44 DAWN_TRY_ASSIGN(format, device->GetInternalFormat(textureFormat)); in ValidateDepthStencilAttachmentFormat()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/utils/
H A DTestUtils.cpp77 wgpu::TextureFormat textureFormat) { in RequiredBytesInCopy() argument
78 uint32_t blockSize = utils::GetTexelBlockSizeInBytes(textureFormat); in RequiredBytesInCopy()
79 uint32_t blockWidth = utils::GetTextureFormatBlockWidth(textureFormat); in RequiredBytesInCopy()
80 uint32_t blockHeight = utils::GetTextureFormatBlockHeight(textureFormat); in RequiredBytesInCopy()
112 wgpu::TextureFormat textureFormat) { in GetTexelCountInCopyRegion() argument
113 return RequiredBytesInCopy(bytesPerRow, rowsPerImage, copyExtent, textureFormat) / in GetTexelCountInCopyRegion()
114 utils::GetTexelBlockSizeInBytes(textureFormat); in GetTexelCountInCopyRegion()
H A DTextureFormatUtils.h90 const char* GetColorTextureComponentTypePrefix(wgpu::TextureFormat textureFormat);
93 uint32_t GetTexelBlockSizeInBytes(wgpu::TextureFormat textureFormat);
94 uint32_t GetTextureFormatBlockWidth(wgpu::TextureFormat textureFormat);
95 uint32_t GetTextureFormatBlockHeight(wgpu::TextureFormat textureFormat);
96 const char* GetGLSLImageFormatQualifier(wgpu::TextureFormat textureFormat);
H A DTextureFormatUtils.cpp18 const char* GetColorTextureComponentTypePrefix(wgpu::TextureFormat textureFormat) { in GetColorTextureComponentTypePrefix() argument
19 switch (textureFormat) { in GetColorTextureComponentTypePrefix()
92 uint32_t GetTexelBlockSizeInBytes(wgpu::TextureFormat textureFormat) { in GetTexelBlockSizeInBytes() argument
93 switch (textureFormat) { in GetTexelBlockSizeInBytes()
166 uint32_t GetTextureFormatBlockWidth(wgpu::TextureFormat textureFormat) { in GetTextureFormatBlockWidth() argument
167 switch (textureFormat) { in GetTextureFormatBlockWidth()
230 uint32_t GetTextureFormatBlockHeight(wgpu::TextureFormat textureFormat) { in GetTextureFormatBlockHeight() argument
231 switch (textureFormat) { in GetTextureFormatBlockHeight()
294 const char* GetGLSLImageFormatQualifier(wgpu::TextureFormat textureFormat) { in GetGLSLImageFormatQualifier() argument
295 switch (textureFormat) { in GetGLSLImageFormatQualifier()
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/lang/clover/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/libosmesa/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-libs/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-dri/mesa-21.3.6/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c88 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
113 textureFormat = *piAttrib; in wglCreatePbufferARB()
114 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
115 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
253 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
354 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/gallium/frontends/wgl/
H A Dstw_ext_pbuffer.c89 int textureFormat = WGL_NO_TEXTURE_ARB; in wglCreatePbufferARB() local
114 textureFormat = *piAttrib; in wglCreatePbufferARB()
115 if (textureFormat != WGL_TEXTURE_RGB_ARB && in wglCreatePbufferARB()
116 textureFormat != WGL_TEXTURE_RGBA_ARB && in wglCreatePbufferARB()
117 textureFormat != WGL_NO_TEXTURE_ARB) { in wglCreatePbufferARB()
261 fb->textureFormat = textureFormat; in wglCreatePbufferARB()
362 *piValue = fb->textureFormat; in wglQueryPbufferARB()
/dports/emulators/aranym/aranym-1.1.0/src/
H A Dhost_surface_opengl.cpp133 textureFormat = GL_RGBA; in createSdlSurface()
136 textureFormat = GL_COLOR_INDEX; in createSdlSurface()
147 textureFormat = GL_RGB; in createSdlSurface()
155 textureFormat = GL_RGB; in createSdlSurface()
175 textureFormat = GL_BGRA_EXT; in createSdlSurface()
299 if (textureFormat == GL_BGRA_EXT) { in updateTexture()
308 textureFormat, pixelType, surface->pixels in updateTexture()
326 textureFormat, pixelType, surfPixels); in updateTexture()
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/graphics/texture/
H A DPackedTexture.cpp27 : textureSize(pSize), textureFormat(pFormat) { } in PackedTexture()
48 Image::Format textureFormat) { in TextureTree() argument
53 if(!texture->Init(textureSize, textureSize, textureFormat)) { in TextureTree()
55 << " and format " << textureFormat; in TextureTree()
98 TextureTree * newTree = new TextureTree(textureSize, textureFormat); in insertImage()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderTextureGatherTests.cpp1004 tcu::TextureFormat textureFormat; member
1033 , textureFormat (textureFormat_) in GatherCaseBaseParams()
1050 , textureFormat () in GatherCaseBaseParams()
1153 …isDepthFormat(baseParams.textureFormat) ? tcu::TextureFormat::UNORM_INT8 : baseParams.textureForma… in TextureGatherInstance()
1445 if (isDepthFormat(m_baseParams.textureFormat)) in verify()
1468 …else if (isUIntFormatType(m_baseParams.textureFormat.type) || isSIntFormatType(m_baseParams.textur… in verify()
1710 if (isDepthFormat(textureFormat)) in genGatherFuncCall()
1985 m_baseParams.textureFormat, in initPrograms()
1995 m_baseParams.textureFormat, in createInstance()
2426 m_baseParams.textureFormat, in initPrograms()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/angle/src/libANGLE/renderer/vulkan/
H A DRenderbufferVk.cpp66 const angle::Format &textureFormat = vkFormat.actualImageFormat(); in setStorageImpl() local
67 bool isDepthOrStencilFormat = textureFormat.depthBits > 0 || textureFormat.stencilBits > 0; in setStorageImpl()
71 (textureFormat.redBits > 0 ? VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT : 0) | in setStorageImpl()
120 const angle::Format &textureFormat = vkFormat.actualImageFormat(); in setStorageEGLImageTarget() local
122 VkImageAspectFlags aspect = vk::GetFormatAspectFlags(textureFormat); in setStorageEGLImageTarget()
/dports/java/java3d/java3d-1.5.2/j3d-core/src/classes/share/javax/media/j3d/
H A DTexture3DRetained.java127 int textureFormat, int imageFormat, in updateTextureImage() argument
134 textureFormat, imageFormat, in updateTextureImage()
143 int textureFormat, int imageFormat, in updateTextureSubImage() argument
150 textureFormat, imageFormat, in updateTextureSubImage()

12345678910>>...22