/external/deqp/framework/opengl/ |
D | gluTexture.hpp | 208 class Texture3D class 211 …Texture3D (const RenderContext& context, deUint32 format, deUint32 dataType, int width, int heig… 212 …Texture3D (const RenderContext& context, deUint32 internalFormat, int width, int height, int dep… 213 …Texture3D (const RenderContext& context, const ContextInfo& contextInfo, int numLevels, const tc… 214 ~Texture3D (void); 218 tcu::Texture3D& getRefTexture (void) { return m_refTexture; } in getRefTexture() 219 const tcu::Texture3D& getRefTexture (void) const { return m_refTexture; } in getRefTexture() 223 Texture3D (const Texture3D& other); // Not allowed! 224 Texture3D& operator= (const Texture3D& other); // Not allowed! 233 tcu::Texture3D m_refTexture;
|
D | gluTexture.cpp | 611 Texture3D::Texture3D (const RenderContext& context, deUint32 format, deUint32 dataType, int width, … in Texture3D() function in glu::Texture3D 624 Texture3D::Texture3D (const RenderContext& context, deUint32 sizedFormat, int width, int height, in… in Texture3D() function in glu::Texture3D 637 Texture3D::Texture3D (const RenderContext& context, in Texture3D() function in glu::Texture3D 667 Texture3D::~Texture3D (void) in ~Texture3D() 673 void Texture3D::upload (void) in upload() 703 void Texture3D::loadCompressed (int numLevels, const tcu::CompressedTexture* levels, const tcu::Tex… in loadCompressed()
|
/external/deqp/modules/glshared/ |
D | glsShaderRenderCase.hpp | 45 class Texture3D; 91 TextureBinding (const glu::Texture3D* tex3D, const tcu::Sampler& sampler); 98 void setTexture (const glu::Texture3D* tex3D); 105 …const glu::Texture3D* get3D (void) const { DE_ASSERT(getType() == TYPE_3D); return m_binding… in get3D() 115 const glu::Texture3D* tex3D; 137 const tcu::Texture3D* tex3D;
|
D | glsFboUtil.cpp | 320 if (dynamic_cast<const Texture3D*>(&img) != DE_NULL) in glTarget() 382 else if (const Texture3D* t3d = dynamic_cast<const Texture3D*>(&cfg)) in glInit()
|
D | glsFboUtil.hpp | 247 struct Texture3D : public TextureLayered struct
|
D | glsShaderRenderCase.cpp | 90 TextureBinding::TextureBinding (const glu::Texture3D* tex3D, const tcu::Sampler& sampler) in TextureBinding() 126 void TextureBinding::setTexture (const glu::Texture3D* tex3D) in setTexture()
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineImageSamplingInstance.cpp | 162 void copySubresourceRange<tcu::Texture3D>(tcu::Texture3D& dest, const tcu::Texture3D& src, const Vk… in copySubresourceRange() 302 const tcu::Texture3D& texture = dynamic_cast<const TestTexture3D&>(testTexture).getTexture(); in createRefProgram() 308 …tcu::Texture3D textureView(texture.getFormat(), baseLevel.getWidth(), baseLevel.getHeight(), … in createRefProgram() 312 …program = MovePtr<Program>(new SamplerProgram<tcu::Texture3D>(renderTargetFormat, textureView, sam… in createRefProgram() 316 …program = MovePtr<Program>(new SamplerProgram<tcu::Texture3D>(renderTargetFormat, texture, sampler… in createRefProgram()
|
D | vktPipelineImageUtil.hpp | 194 tcu::Texture3D m_texture; 204 virtual const tcu::Texture3D& getTexture (void) const;
|
D | vktPipelineReferenceRenderer.hpp | 222 …static tcu::Vec4 sampleTexture (const tcu::Texture3D& texture, const tcu::Sampler& sampler, const … in sampleTexture()
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrShaderProgram.hpp | 42 class Texture3D; 214 const rc::Texture3D* tex3D;
|
D | sglrReferenceContext.hpp | 244 class Texture3D : public Texture class 247 Texture3D (deUint32 name = 0); 248 virtual ~Texture3D (void); 805 void setTex3DBinding (int unit, rc::Texture3D* tex3D); 830 rc::Texture3D* tex3DBinding; 837 rc::Texture3D default3DTex; 892 rc::Texture3D m_emptyTex3D;
|
D | sglrReferenceContext.cpp | 562 void ReferenceContext::setTex3DBinding (int unitNdx, Texture3D* texture) in setTex3DBinding() 651 case GL_TEXTURE_3D: texObj = new Texture3D (texture); break; in bindTexture() 666 case GL_TEXTURE_3D: setTex3DBinding (unitNdx, static_cast<Texture3D*> (texObj)); break; in bindTexture() 1202 Texture3D* texture = unit.tex3DBinding ? unit.tex3DBinding : &unit.default3DTex; in texImage3D() 1365 Texture3D& texture = unit.tex3DBinding ? *unit.tex3DBinding : unit.default3DTex; in texSubImage3D() 1746 Texture3D& texture = unit.tex3DBinding ? *unit.tex3DBinding : unit.default3DTex; in texStorage3D() 2214 const Texture3D* tex3D = static_cast<const Texture3D*>(texture); in checkFramebufferStatus() 2354 level = dynamic_cast<Texture3D*>(texture)->getLevel(attachment.level); in getFboAttachment() 4493 rc::Texture3D* tex = DE_NULL; in drawWithReference() 5284 Texture3D::Texture3D (deUint32 name) in Texture3D() function in sglr::rc::Texture3D [all …]
|
/external/deqp/framework/common/ |
D | tcuTexture.hpp | 1050 class Texture3D : private TextureLevelPyramid class 1053 Texture3D (const TextureFormat& format, int width, int height, int depth); 1054 Texture3D (const Texture3D& other); 1055 ~Texture3D (void); 1072 Texture3D& operator= (const Texture3D& other); 1083 inline Vec4 Texture3D::sample (const Sampler& sampler, float s, float t, float r, float lod) const in sample() 1088 inline Vec4 Texture3D::sampleOffset (const Sampler& sampler, float s, float t, float r, float lod, … in sampleOffset()
|
D | tcuTexture.cpp | 3592 Texture3D::Texture3D (const TextureFormat& format, int width, int height, int depth) in Texture3D() function in tcu::Texture3D 3601 Texture3D::Texture3D (const Texture3D& other) in Texture3D() function in tcu::Texture3D 3610 Texture3D& Texture3D::operator= (const Texture3D& other) in operator =() 3625 Texture3D::~Texture3D (void) in ~Texture3D() 3629 void Texture3D::allocLevel (int levelNdx) in allocLevel()
|
/external/deqp/modules/gles31/functional/ |
D | es31fTextureBorderClampTests.cpp | 250 struct TextureTraits<glu::Texture3D> 254 …static de::MovePtr<glu::Texture3D> createTextureFromInternalFormat (glu::RenderContext& renderCtx,… in createTextureFromInternalFormat() 256 …return de::MovePtr<glu::Texture3D>(new glu::Texture3D(renderCtx, texFormat, size.x(), size.y(), si… in createTextureFromInternalFormat() 259 …static de::MovePtr<glu::Texture3D> createTextureFromFormatAndType (glu::RenderContext& renderCtx, … in createTextureFromFormatAndType() 261 …return de::MovePtr<glu::Texture3D>(new glu::Texture3D(renderCtx, texFormat, type, size.x(), size.y… in createTextureFromFormatAndType() 264 …static de::MovePtr<glu::Texture3D> createTextureFromCompressedData (glu::RenderContext& render… in createTextureFromCompressedData() 269 return de::MovePtr<glu::Texture3D>(new glu::Texture3D(renderCtx, in createTextureFromCompressedData() 2039 de::MovePtr<glu::Texture3D> m_texture; 2092 …m_texture = genDummyTexture<glu::Texture3D>(m_context.getRenderContext(), m_context.getContextInfo… in init()
|
D | es31fShaderImageLoadStoreTests.cpp | 315 static inline tcu::Texture3D* newOneLevelTexture3D (const tcu::TextureFormat& format, int w, int h,… in newOneLevelTexture3D() 317 tcu::Texture3D* const res = new tcu::Texture3D(format, w, h, d); in newOneLevelTexture3D() 613 const SharedPtr<tcu::Texture3D> m_tex3D; 624 …= TEXTURETYPE_3D ? SharedPtr<tcu::Texture3D> (newOneLevelTexture3D (format, w, h, d)) : Share… in LayeredImage()
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
D | d3d11_screen.h | 1080 def_desc.Texture3D.MipLevels = resource->last_level + 1; 1210 def_desc.Texture3D.WSize = resource->depth0; in CreateRenderTargetView() 1239 templat.u.tex.level = desc->Texture3D.MipSlice; in CreateRenderTargetView() 1240 templat.u.tex.first_layer = desc->Texture3D.FirstWSlice; in CreateRenderTargetView() 1241 templat.u.tex.last_layer = desc->Texture3D.FirstWSlice + desc->Texture3D.WSize - 1; in CreateRenderTargetView()
|
/external/deqp/modules/gles3/functional/ |
D | es3fVertexTextureTests.cpp | 158 template <> struct TexTypeTcuClass<TEXTURETYPE_3D> { typedef tcu::Texture3D t; }; 420 static inline IVec3 getTextureSize (const glu::Texture3D& tex) in getTextureSize() 422 const tcu::Texture3D& ref = tex.getRefTexture(); in getTextureSize() 455 static inline Vec4 sample (const tcu::Texture3D& tex, const Vec3& coord, float lod, const tcu::Sam… in sample() 1493 glu::Texture3D* m_textures[2]; // 2 textures, a gradient texture and a grid texture. 1572 …m_textures[i] = new glu::Texture3D(m_context.getRenderContext(), GL_RGB, GL_UNSIGNED_BYTE, texWidt… in init() 1628 const tcu::Texture3D& refTexture = m_textures[textureNdx]->getRefTexture(); in calculateLod()
|
D | es3fTextureUnitTests.cpp | 737 vector<tcu::Texture3D*> m_textures3d; 771 for (vector<tcu::Texture3D*>::iterator i = m_textures3d.begin(); i != m_textures3d.end(); i++) in deinit() 874 m_textures3d.push_back(new tcu::Texture3D(texFormat, texWidth, texHeight, texDepth)); in init() 1134 const tcu::Texture3D* texture = m_textures3d[ndx3d]; in upload3dTexture()
|
D | es3fTextureFilteringTests.cpp | 947 const glu::Texture3D* texture; 956 FilterCase (const glu::Texture3D* tex_, const tcu::Vec3& lod_, const tcu::Vec3& offset_) in FilterCase() 964 glu::Texture3D* m_gradientTex; 965 glu::Texture3D* m_gridTex; 1007 …m_gradientTex = new glu::Texture3D(m_context.getRenderContext(), m_internalFormat, m_width, m_heig… in init() 1008 …m_gridTex = new glu::Texture3D(m_context.getRenderContext(), m_internalFormat, m_width, m_height,… in init()
|
D | es3fFboCompletenessTests.cpp | 290 texCfg = &builder.makeConfig<Texture3D>(); in build()
|
D | es3fTextureMipmapTests.cpp | 1112 glu::Texture3D* m_texture; 1148 …m_texture = new glu::Texture3D(m_context.getRenderContext(), m_internalFormat, m_width, m_height, … in init() 1245 const tcu::Texture3D& refTexture = m_texture->getRefTexture(); in iterate() 2059 glu::Texture3D* m_texture; 2088 …m_texture = new glu::Texture3D(m_context.getRenderContext(), format, m_texWidth, m_texHeight, m_te… in init() 2122 const tcu::Texture3D& refTexture = m_texture->getRefTexture(); in iterate()
|
D | es3fTextureFormatTests.cpp | 593 glu::Texture3D* m_texture; 635 …? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit in… in init() 636 …: new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal f… in init()
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/ |
D | d3d10_1.idl | 110 D3D10_TEX3D_SRV Texture3D;
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRender.hpp | 123 const tcu::Texture3D* tex3D;
|