OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputTypeSize
(Results
1 - 14
of
14
) sorted by null
/external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp
87
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
88
const bool aligned = (stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0;
156
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
157
const bool bufferUnaligned = (storages[storageNdx] == Array::STORAGE_BUFFER) && (stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) != 0;
227
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
228
const bool aligned = ((stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0) && (offsets[offsetNdx] % Array::
inputTypeSize
(inputTypes[inputTypeNdx]) == 0);
295
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
296
const bool aligned = ((stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0) && ((offsets[offsetNdx] % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0)
[
all
...]
es2sDrawTests.cpp
347
if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::
inputTypeSize
(attribSpec.inputType) > attribSpec.stride)
/external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp
86
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
87
const bool aligned = (stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0;
186
const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::
inputTypeSize
(m_type) * componentCount)) : (strides[strideNdx]);
187
const int alignment = (packed) ? (Array::
inputTypeSize
(m_type) * componentCount) : (Array::
inputTypeSize
(m_type));
293
const int stride = (strides[strideNdx] < 0) ? ((packed) ? (8) : (Array::
inputTypeSize
(m_type) * componentCount)) : (strides[strideNdx]);
294
const int alignment = (packed) ? (Array::
inputTypeSize
(m_type) * componentCount) : (Array::
inputTypeSize
(m_type));
394
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(m_type) * componentCount : strides[strideNdx]);
395
const int alignment = (packed) ? (Array::
inputTypeSize
(m_type) * componentCount) : (Array::inputTypeSize(m_type))
[
all
...]
es3sDrawTests.cpp
561
if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::
inputTypeSize
(attribSpec.inputType) > attribSpec.stride)
/external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp
83
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
84
const bool aligned = (stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0;
183
const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::
inputTypeSize
(m_type) * componentCount)) : (strides[strideNdx]);
184
const int alignment = (packed) ? (Array::
inputTypeSize
(m_type) * componentCount) : (Array::
inputTypeSize
(m_type));
290
const int stride = (strides[strideNdx] < 0) ? ((packed) ? (8) : (Array::
inputTypeSize
(m_type) * componentCount)) : (strides[strideNdx]);
291
const int alignment = (packed) ? (Array::
inputTypeSize
(m_type) * componentCount) : (Array::
inputTypeSize
(m_type));
391
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(m_type) * componentCount : strides[strideNdx]);
392
const int alignment = (packed) ? (Array::
inputTypeSize
(m_type) * componentCount) : (Array::inputTypeSize(m_type))
[
all
...]
es3fDrawTests.cpp
[
all
...]
/external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp
86
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
87
const bool aligned = (stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0;
155
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
156
const bool bufferAligned = (storages[storageNdx] == Array::STORAGE_BUFFER) && (stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0;
226
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
227
const bool aligned = ((stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0) && (offsets[offsetNdx] % Array::
inputTypeSize
(inputTypes[inputTypeNdx]) == 0);
294
const int stride = (strides[strideNdx] < 0 ? Array::
inputTypeSize
(inputTypes[inputTypeNdx]) * 2 : strides[strideNdx]);
295
const bool aligned = ((stride % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0) && ((offsets[offsetNdx] % Array::
inputTypeSize
(inputTypes[inputTypeNdx])) == 0)
[
all
...]
es2fDrawTests.cpp
633
if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::
inputTypeSize
(attribSpec.inputType) > attribSpec.stride)
/external/deqp/modules/glshared/
glsDrawTest.hpp
184
static int
inputTypeSize
(InputType type);
glsVertexArrayTests.cpp
171
int Array::
inputTypeSize
(InputType type)
[
all
...]
glsVertexArrayTests.hpp
149
static int
inputTypeSize
(InputType type);
glsDrawTest.cpp
[
all
...]
/external/deqp/modules/gles31/stress/
es31sDrawTests.cpp
495
if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::
inputTypeSize
(attribSpec.inputType) > attribSpec.stride)
/external/deqp/modules/gles31/functional/
es31fDrawTests.cpp
[
all
...]
Completed in 117 milliseconds