Home
last modified time | relevance | path

Searched refs:kHeight (Results 1 – 3 of 3) sorted by relevance

/hardware/libhardware/modules/camera/3_4/
Dstatic_properties_test.cpp88 int32_t height = kHeight) { in MakeStream()
125 static constexpr int32_t kHeight = 240; member in default_camera_hal::StaticPropertiesTest
151 kHeight,
159 kHeight,
163 kHeight,
167 kHeight,
171 kHeight,
175 kHeight,
180 {{{output_multisize_non_stalling_, kWidth, kHeight, 0}}},
185 {{{bidirectional_self_supporting_stalling_, kWidth, kHeight, 10}}},
[all …]
/hardware/google/gfxstream/common/end2end/
DGfxstreamEnd2EndVkSnapshotImageTests.cpp351 static constexpr int kHeight = 256; in TEST_P() local
352 static constexpr vkhpp::DeviceSize kSize = 4 * kWidth * kHeight; in TEST_P()
412 .extent.height = kHeight, in TEST_P()
493 .height = kHeight, in TEST_P()
519 utils::readImageData(*image, kWidth, kHeight, vkhpp::ImageLayout::eTransferDstOptimal, in TEST_P()
/hardware/google/gfxstream/host/tests/
DFrameBuffer_unittest.cpp886 const int kHeight = 16; in TEST_F() local
897 void* pixmap = createNativePixmap(kWidth, kHeight, kBytesPerPixel); in TEST_F()
901 mFb->createColorBuffer(kWidth, kHeight, GL_RGBA, FRAMEWORK_FORMAT_GL_COMPATIBLE); in TEST_F()
902 …TestTexture forUpdate = createTestTextureRGBA8888SingleColor(kWidth, kHeight, 1.0f, 0.0f, 1.0f, 1.… in TEST_F()
904 mFb->updateColorBuffer(cb, 0, 0, kWidth, kHeight, GL_RGBA, GL_UNSIGNED_BYTE, forUpdate.data()); in TEST_F()
908 …TestTexture forRead = createTestTextureRGBA8888SingleColor(kWidth, kHeight, 0.0f, 0.0f, 0.0f, 0.0f… in TEST_F()
909 mFb->readColorBuffer(cb, 0, 0, kWidth, kHeight, GL_RGBA, GL_UNSIGNED_BYTE, forRead.data()); in TEST_F()
911 EXPECT_TRUE(ImageMatches(kWidth, kHeight, 4, kWidth, forUpdate.data(), forRead.data())); in TEST_F()