OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:texCfg
(Results
1 - 4
of
4
) sorted by null
/external/deqp/modules/gles3/functional/
es3fFboCompletenessTests.cpp
262
TextureLayered*
texCfg
= DE_NULL;
268
texCfg
= &builder.makeConfig<Texture3D>();
271
texCfg
= &builder.makeConfig<Texture2DArray>();
276
texCfg
->internalFormat = getDefaultFormat(target, GL_TEXTURE);
277
texCfg
->width = 64;
278
texCfg
->height = 64;
279
texCfg
->numLayers = m_params.numLayers;
280
const GLuint tex = builder.glCreateTexture(*
texCfg
);
/external/deqp/modules/glshared/
glsFboUtil.cpp
455
void Framebuffer::setTexture (glw::GLuint texName, const Texture&
texCfg
)
457
textures[texName] = &
texCfg
;
609
GLuint FboBuilder::glCreateTexture (const Texture&
texCfg
)
611
const GLuint texName = glCreate(
texCfg
, m_gl);
613
setTexture(texName,
texCfg
);
glsFboUtil.hpp
366
void setTexture (glw::GLuint texName, const Texture&
texCfg
);
380
glw::GLuint glCreateTexture (const config::Texture&
texCfg
);
glsFboCompletenessTests.cpp
562
else if (Texture2D*
texCfg
= dynamic_cast<Texture2D*>(imgCfg))
564
img = builder.glCreateTexture(*
texCfg
);
Completed in 565 milliseconds