/external/deqp/modules/gles3/functional/ |
D | es3fShaderStateQueryTests.cpp | 2177 GLfloat vertexData[4] = {0.0f}; // never accessed in test() local 2182 { 4, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 2183 { 3, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 2184 { 2, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 2185 { 1, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 2186 { 4, GL_INT, 0, GL_FALSE, vertexData }, in test() 2187 { 3, GL_INT, 0, GL_FALSE, vertexData }, in test() 2188 { 2, GL_INT, 0, GL_FALSE, vertexData }, in test() 2189 { 1, GL_INT, 0, GL_FALSE, vertexData }, in test() 2261 const GLfloat vertexData[4] = {0.0f}; // never accessed in test() local [all …]
|
D | es3fRasterizationTests.cpp | 123 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLe… 124 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const st… 351 …e::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLenum pri… in drawPrimitives() argument 354 const std::vector<tcu::Vec4> colorData(vertexData.size(), tcu::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); in drawPrimitives() 356 drawPrimitives(result, vertexData, colorData, primitiveType); in drawPrimitives() 359 …e::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const std::vect… in drawPrimitives() argument 371 gl.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, 0, &vertexData[0]); in drawPrimitives() 376 gl.drawArrays (primitiveType, 0, (glw::GLsizei)vertexData.size()); in drawPrimitives()
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderStateQueryTests.cpp | 1519 GLfloat vertexData[4] = {0.0f}; // never accessed in test() local 1525 { 4, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 1526 { 3, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 1527 { 2, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 1528 { 1, GL_FLOAT, 0, GL_FALSE, vertexData }, in test() 1529 { 4, GL_SHORT, 0, GL_FALSE, vertexData }, in test() 1530 { 3, GL_SHORT, 0, GL_FALSE, vertexData }, in test() 1531 { 2, GL_SHORT, 0, GL_FALSE, vertexData }, in test() 1532 { 1, GL_SHORT, 0, GL_FALSE, vertexData }, in test() 1555 GLfloat vertexData[4] = {0.0f}; // never accessed in test() local [all …]
|
D | es2fRasterizationTests.cpp | 95 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLe… 96 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const st… 186 …e::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLenum pri… in drawPrimitives() argument 189 const std::vector<tcu::Vec4> colorData(vertexData.size(), tcu::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); in drawPrimitives() 191 drawPrimitives(result, vertexData, colorData, primitiveType); in drawPrimitives() 194 …e::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const std::vect… in drawPrimitives() argument 206 gl.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, 0, &vertexData[0]); in drawPrimitives() 211 gl.drawArrays (primitiveType, 0, (glw::GLsizei)vertexData.size()); in drawPrimitives()
|
/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationShaderInputOutputTests.cpp | 68 const void* vertexData, in runTest() argument 87 deMemcpy(alloc.getHostPtr(), vertexData, static_cast<std::size_t>(vertexDataSizeBytes)); in runTest() 304 std::vector<float> vertexData; in test() local 305 vertexData.reserve(caseDef.inPatchSize); in test() 309 vertexData.push_back(f*f); in test() 311 const VkDeviceSize vertexBufferSize = sizeof(float) * vertexData.size(); in test() 320 VK_FORMAT_R32_SFLOAT, &vertexData[0], vertexBufferSize, referenceImage.getAccess()); in test() 487 std::vector<float> vertexData (INPUT_PATCH_SIZE * numPrimitives, 0.0f); in test() local 488 const VkDeviceSize vertexBufferSize = sizeof(float) * vertexData.size(); in test() 491 vertexData[INPUT_PATCH_SIZE * i] = static_cast<float>(i) / static_cast<float>(numPrimitives); in test() [all …]
|
D | vktTessellationMiscDrawTests.cpp | 136 const std::vector<tcu::Vec2> vertexData = genVertexPositions(caseDef.primitiveType); in runTest() local 143 const VkDeviceSize vertexDataSizeBytes = sizeInBytes(vertexData); in runTest() 148 DE_ASSERT(inPatchSize == vertexData.size()); in runTest() 149 DE_ASSERT(sizeof(vertexData[0]) == vertexStride); in runTest() 153 deMemcpy(alloc.getHostPtr(), &vertexData[0], static_cast<std::size_t>(vertexDataSizeBytes)); in runTest()
|
D | vktTessellationInvarianceTests.cpp | 556 void uploadVertexAttributes (const std::vector<float>& vertexData); 693 void BaseTestInstance::uploadVertexAttributes (const std::vector<float>& vertexData) in uploadVertexAttributes() argument 699 deMemcpy(alloc.getHostPtr(), &vertexData[0], sizeInBytes(vertexData)); in uploadVertexAttributes() 700 flushMappedMemoryRange(vk, device, alloc.getMemory(), alloc.getOffset(), sizeInBytes(vertexData)); in uploadVertexAttributes()
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawNegativeViewportHeightTests.cpp | 95 std::vector<Vec4> vertexData; in NegativeViewportHeightTestInstance() local 98 vertexData.push_back(Vec4(-0.8f, -0.6f, 0.0f, 1.0f)); // 0-----2 in NegativeViewportHeightTestInstance() 99 vertexData.push_back(Vec4(-0.8f, 0.6f, 0.0f, 1.0f)); // | / in NegativeViewportHeightTestInstance() 100 vertexData.push_back(Vec4(-0.2f, -0.6f, 0.0f, 1.0f)); // 1|/ in NegativeViewportHeightTestInstance() 103 vertexData.push_back(Vec4( 0.2f, -0.6f, 0.0f, 1.0f)); // 0-----1 in NegativeViewportHeightTestInstance() 104 vertexData.push_back(Vec4( 0.8f, -0.6f, 0.0f, 1.0f)); // \ | in NegativeViewportHeightTestInstance() 105 vertexData.push_back(Vec4( 0.8f, 0.6f, 0.0f, 1.0f)); // \|2 in NegativeViewportHeightTestInstance() 107 const VkDeviceSize dataSize = vertexData.size() * sizeof(Vec4); in NegativeViewportHeightTestInstance() 111 …deMemcpy(m_vertexBuffer->getBoundMemory().getHostPtr(), &vertexData[0], static_cast<std::size_t>(d… in NegativeViewportHeightTestInstance()
|
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesShaderIntrinsicsSampled.cpp | 664 std::vector<tcu::Vec2> vertexData; in recordCommands() local 666 vertexData.push_back(tcu::Vec2(-1.0f,-1.0f)); in recordCommands() 667 vertexData.push_back(tcu::Vec2( 0.0f, 0.0f)); in recordCommands() 669 vertexData.push_back(tcu::Vec2(-1.0f, 1.0f)); in recordCommands() 670 vertexData.push_back(tcu::Vec2( 0.0f, 1.0f)); in recordCommands() 672 vertexData.push_back(tcu::Vec2( 1.0f,-1.0f)); in recordCommands() 673 vertexData.push_back(tcu::Vec2( 1.0f, 0.0f)); in recordCommands() 675 vertexData.push_back(tcu::Vec2( 1.0f, 1.0f)); in recordCommands() 676 vertexData.push_back(tcu::Vec2( 1.0f, 1.0f)); in recordCommands() 678 const VkDeviceSize vertexDataSizeInBytes = sizeInBytes(vertexData); in recordCommands() [all …]
|
D | vktSparseResourcesBufferTests.cpp | 1082 const Vec4 vertexData[] = in iterate() local 1090 const VkDeviceSize vertexBufferSize = sizeof(vertexData); in iterate() 1095 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertexData[0], vertexBufferSize); in iterate()
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMultisampleTests.cpp | 522 Vertex4RGBA vertexData[3] = in generateVertices() local 541 vertexData[i].color = tcu::Vec4(); in generateVertices() 544 vertices = std::vector<Vertex4RGBA>(vertexData, vertexData + 3); in generateVertices() 550 const Vertex4RGBA vertexData[2] = in generateVertices() local 562 vertices = std::vector<Vertex4RGBA>(vertexData, vertexData + 2); in generateVertices() 584 Vertex4RGBA vertexData[4] = in generateVertices() local 607 vertexData[i].color.w() = 0.25f; in generateVertices() 612 vertexData[i].color.w() = 0.0f; in generateVertices() 616 vertexData[0].color.w() = 0.0f; in generateVertices() 617 vertexData[2].color.w() = 0.0f; in generateVertices() [all …]
|
D | vktPipelineInputAssemblyTests.cpp | 83 std::vector<Vertex4RGBA>& vertexData) const = 0; 106 std::vector<Vertex4RGBA>& vertexData) const; 126 std::vector<Vertex4RGBA>& vertexData) const; 286 …kIndexType indexType, std::vector<deUint32>& indexData, std::vector<Vertex4RGBA>& vertexData) const in createBufferData() 614 vertexData = vertices; in createBufferData() 640 …kIndexType indexType, std::vector<deUint32>& indexData, std::vector<Vertex4RGBA>& vertexData) const in createBufferData() 894 vertexData = vertices; in createBufferData()
|
/external/deqp/modules/gles3/performance/ |
D | es3pBufferDataUploadTests.cpp | 3882 static void generateLayeredGridVertexAttribData4C4V (std::vector<tcu::Vec4>& vertexData, const Laye… in generateLayeredGridVertexAttribData4C4V() argument 3888 vertexData.resize(getLayeredGridNumVertices(scene) * 2); in generateLayeredGridVertexAttribData4C4V() 3900 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() 3901 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() 3903 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() 3904 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() 3906 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() 3907 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() 3909 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() 3910 …vertexData[(cellY * scene.gridWidth * scene.gridLayers + cellX * scene.gridLayers + cellZ) * 12 + … in generateLayeredGridVertexAttribData4C4V() [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fVertexAttributeBindingTests.cpp | 1242 std::vector<tcu::Vec4> vertexData (12 * GRID_SIZE * GRID_SIZE); in createBuffers() local 1249 …vertexData[(y * GRID_SIZE + x) * 12 + 0] = tcu::Vec4(float(x+0) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers() 1250 vertexData[(y * GRID_SIZE + x) * 12 + 1] = color; in createBuffers() 1251 …vertexData[(y * GRID_SIZE + x) * 12 + 2] = tcu::Vec4(float(x+0) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers() 1252 vertexData[(y * GRID_SIZE + x) * 12 + 3] = color; in createBuffers() 1253 …vertexData[(y * GRID_SIZE + x) * 12 + 4] = tcu::Vec4(float(x+1) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers() 1254 vertexData[(y * GRID_SIZE + x) * 12 + 5] = color; in createBuffers() 1255 …vertexData[(y * GRID_SIZE + x) * 12 + 6] = tcu::Vec4(float(x+0) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers() 1256 vertexData[(y * GRID_SIZE + x) * 12 + 7] = color; in createBuffers() 1257 …vertexData[(y * GRID_SIZE + x) * 12 + 8] = tcu::Vec4(float(x+1) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers() [all …]
|
D | es31fGeometryShaderTests.cpp | 4708 static const tcu::Vec4 vertexData[8*2] = in iterate() local 4730 gl.bufferData(GL_ARRAY_BUFFER, (int)sizeof(vertexData), vertexData, GL_STATIC_DRAW); in iterate()
|
/external/deqp/modules/glshared/ |
D | glsFragOpInteractionCase.cpp | 311 static void setupAttributes (sglr::Context& ctx, const VertexDataStorage& vertexData, deUint32 prog… in setupAttributes() argument 313 for (int attribNdx = 0; attribNdx < vertexData.getNumEntries(); ++attribNdx) in setupAttributes() 315 const glu::VertexArrayBinding bindingPtr = getEntryWithPointer(vertexData, attribNdx); in setupAttributes() 517 VertexDataStorage vertexData (m_vertexShader.getInputs(), numVertices); in iterate() local 543 const glu::VertexArrayBinding layoutEntry = getEntryWithPointer(vertexData, attribNdx); in iterate() 573 const glu::VertexArrayPointer posPtr = getEntryWithPointer(vertexData, positionNdx).pointer; in iterate() 587 setupAttributes(ctx, vertexData, program); in iterate()
|
/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/ |
D | OGLES2HelloAPI_LinuxX11.cpp | 399 GLfloat vertexData[] = {-0.4f,-0.4f, 0.0f, // Bottom Left in InitialiseBuffer() local 413 glBufferData(GL_ARRAY_BUFFER, sizeof(vertexData), vertexData, GL_STATIC_DRAW); in InitialiseBuffer()
|
D | OGLES2HelloAPI_OSX.mm | 301 GLfloat vertexData[] = {-0.4f,-0.4f, 0.0f, // Bottom Left 315 glBufferData(GL_ARRAY_BUFFER, sizeof(vertexData), vertexData, GL_STATIC_DRAW);
|
/external/deqp/external/vulkancts/modules/vulkan/rasterization/ |
D | vktRasterizationTests.cpp | 148 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData,… 149 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData,… 620 …e::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, VkPrimitiveTopo… in drawPrimitives() argument 623 const std::vector<tcu::Vec4> colorData(vertexData.size(), tcu::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); in drawPrimitives() 625 drawPrimitives(result, vertexData, colorData, primitiveTopology); in drawPrimitives()
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmInstructionTests.cpp | 4985 const Vec4 vertexData[] = in runAndVerifyDefaultPipeline() local 5008 const size_t vertexCount = sizeof(vertexData) / singleVertexDataSize; in runAndVerifyDefaultPipeline() 5015 (VkDeviceSize)sizeof(vertexData), // VkDeviceSize size; in runAndVerifyDefaultPipeline() 5549 (VkDeviceSize)sizeof(vertexData), // VkDeviceSize size; in runAndVerifyDefaultPipeline() 5553 deMemcpy(vertexBufPtr, &vertexData[0], sizeof(vertexData)); in runAndVerifyDefaultPipeline()
|
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |