Home
last modified time | relevance | path

Searched refs:inputData (Results 1 – 5 of 5) sorted by relevance

/device/generic/vulkan-cereal/third-party/angle/src/tests/gl_tests/
DVertexAttributeTest.cpp172 inputData(inputDataIn), in TestData()
181 const void *inputData; member
196 glBufferData(GL_ARRAY_BUFFER, dataSize, test.inputData, GL_STATIC_DRAW); in setupTest()
206 test.inputData); in setupTest()
399 static void InitTestData(std::array<GLfloat, kVertexCount> &inputData, in InitTestData() argument
404 inputData[count] = static_cast<GLfloat>(count); in InitTestData()
405 expectedData[count] = inputData[count]; in InitTestData()
418 std::array<GLubyte, kVertexCount> inputData = { in TEST_P() local
423 expectedData[i] = inputData[i]; in TEST_P()
426 TestData data(GL_UNSIGNED_BYTE, GL_FALSE, Source::IMMEDIATE, inputData.data(), in TEST_P()
[all …]
DComputeShaderTest.cpp37 const std::array<T, kWidth * kHeight> &inputData, in runSharedMemoryTest() argument
46 inputData.data()); in runSharedMemoryTest()
1909 const std::array<GLuint, 4> inputData = {{250, 200, 150, 100}}; in TEST_P() local
1911 runSharedMemoryTest<GLuint, 2, 2>(kCSShader, GL_R32UI, GL_UNSIGNED_INT, inputData, in TEST_P()
1933 const std::array<GLuint, 4> inputData = {{250, 200, 150, 100}}; in TEST_P() local
1935 runSharedMemoryTest<GLuint, 2, 2>(kCSShader, GL_R32UI, GL_UNSIGNED_INT, inputData, in TEST_P()
1961 const std::array<GLuint, 4> inputData = {{250, 200, 150, 100}}; in TEST_P() local
1963 runSharedMemoryTest<GLuint, 2, 2>(kCSShader, GL_R32UI, GL_UNSIGNED_INT, inputData, in TEST_P()
2027 const std::array<GLuint, 8> inputData = {{1, 2, 4, 8, 16, 32, 64, 128}}; in TEST_P() local
2029 runSharedMemoryTest<GLuint, 8, 1>(kCSShader, GL_R32UI, GL_UNSIGNED_INT, inputData, in TEST_P()
[all …]
DShaderStorageBufferTest.cpp24 const float *inputData) in MatrixCase()
29 mInputdata(inputData) in MatrixCase()
43 const GLuint *inputData, in VectorCase()
47 mInputdata(inputData), in VectorCase()
DGLSLTest.cpp7867 unsigned int inputData = 89u; in TEST_P() local
7870 glBufferData(GL_UNIFORM_BUFFER, sizeof(inputData), &inputData, GL_STATIC_DRAW); in TEST_P()
7920 EXPECT_EQ(ptr[0], inputData); in TEST_P()
/device/generic/vulkan-cereal/third-party/angle/src/common/
Dmathutil.cpp72 const RGB9E5Data *inputData = reinterpret_cast<const RGB9E5Data *>(&input); in convert999E5toRGBFloats() local
75 inputData->R * pow(2.0f, (int)inputData->E - g_sharedexp_bias - g_sharedexp_mantissabits); in convert999E5toRGBFloats()
77 inputData->G * pow(2.0f, (int)inputData->E - g_sharedexp_bias - g_sharedexp_mantissabits); in convert999E5toRGBFloats()
79 inputData->B * pow(2.0f, (int)inputData->E - g_sharedexp_bias - g_sharedexp_mantissabits); in convert999E5toRGBFloats()