OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:log2MaxTextureSize
(Results
1 - 3
of
3
) sorted by null
/external/deqp/modules/gles2/functional/
es2fNegativeTextureApiTests.cpp
247
deUint32
log2MaxTextureSize
= deLog2Floor32(m_context.getContextInfo().getInt(GL_MAX_TEXTURE_SIZE)) + 1;
248
glCompressedTexImage2D(GL_TEXTURE_2D,
log2MaxTextureSize
, compressedFormats[0], 0, 0, 0, 0, 0);
260
deUint32
log2MaxTextureSize
= deLog2Floor32(m_context.getContextInfo().getInt(GL_MAX_CUBE_MAP_TEXTURE_SIZE)) + 1;
261
glCompressedTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X,
log2MaxTextureSize
, compressedFormats[0], 0, 0, 0, 0, 0);
263
glCompressedTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
log2MaxTextureSize
, compressedFormats[0], 0, 0, 0, 0, 0);
265
glCompressedTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
log2MaxTextureSize
, compressedFormats[0], 0, 0, 0, 0, 0);
267
glCompressedTexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
log2MaxTextureSize
, compressedFormats[0], 0, 0, 0, 0, 0);
269
glCompressedTexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
log2MaxTextureSize
, compressedFormats[0], 0, 0, 0, 0, 0);
271
glCompressedTexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,
log2MaxTextureSize
, compressedFormats[0], 0, 0, 0, 0, 0);
[
all
...]
/external/deqp/modules/gles3/functional/
es3fNegativeTextureApiTests.cpp
243
deUint32
log2MaxTextureSize
= deLog2Floor32(m_context.getContextInfo().getInt(GL_MAX_TEXTURE_SIZE)) + 1;
244
glCompressedTexImage2D(GL_TEXTURE_2D,
log2MaxTextureSize
, GL_COMPRESSED_RGB8_ETC2, 16, 16, 0, etc2DataSize(16, 16), 0);
598
deUint32
log2MaxTextureSize
= deLog2Floor32(m_context.getContextInfo().getInt(GL_MAX_TEXTURE_SIZE)) + 1;
599
glCopyTexImage2D(GL_TEXTURE_2D,
log2MaxTextureSize
, GL_RGB, 0, 0, 64, 64, 0);
[
all
...]
/external/deqp/modules/gles31/functional/
es31fNegativeTextureApiTests.cpp
238
deUint32
log2MaxTextureSize
= deLog2Floor32(ctx.getInteger(GL_MAX_TEXTURE_SIZE)) + 1;
239
ctx.glCompressedTexImage2D(GL_TEXTURE_2D,
log2MaxTextureSize
, GL_COMPRESSED_RGB8_ETC2, 16, 16, 0, etc2DataSize(16, 16), 0);
[
all
...]
Completed in 1296 milliseconds