OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isFilterable
(Results
1 - 3
of
3
) sorted by null
/external/deqp/modules/gles31/functional/
es31fFboColorbufferTests.cpp
156
bool
isFilterable
= glu::isGLInternalColorFormatFilterable(m_format);
172
glTexParameteri(GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_MIN_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
173
glTexParameteri(GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_MAG_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
/external/deqp/modules/gles3/functional/
es3fFboColorbufferTests.cpp
253
bool
isFilterable
= glu::isGLInternalColorFormatFilterable(format);
264
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
265
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
380
bool
isFilterable
= glu::isGLInternalColorFormatFilterable(m_format);
389
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
390
glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
509
bool
isFilterable
= glu::isGLInternalColorFormatFilterable(m_format);
519
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MIN_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
520
glTexParameteri(GL_TEXTURE_2D_ARRAY, GL_TEXTURE_MAG_FILTER,
isFilterable
? GL_LINEAR : GL_NEAREST);
[
all
...]
es3fTextureUnitTests.cpp
832
bool
isFilterable
= glu::isGLInternalColorFormatFilterable(params.internalFormat);
838
params.magFilter =
isFilterable
? s_testMagFilters[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testMagFilters) - 1)] : GL_NEAREST;
841
params.minFilter =
isFilterable
?
845
params.minFilter =
isFilterable
?
[
all
...]
Completed in 187 milliseconds