Home
last modified time | relevance | path

Searched refs:width (Results 1 – 25 of 1169) sorted by relevance

12345678910>>...47

/device/amlogic/yukawa/hal/gralloc/
Dmali_gralloc_bufferallocation.cpp103 static void get_rgb_stride_and_size(int width, int height, int pixel_size, int *pixel_stride, int *… in get_rgb_stride_and_size() argument
108 stride = width * pixel_size; in get_rgb_stride_and_size()
138 w_aligned = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_BASIC_WIDTH_ALIGN); in get_rgb_stride_and_size()
144 w_aligned = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_WIDEBLK_WIDTH_ALIGN); in get_rgb_stride_and_size()
150 w_aligned = GRALLOC_ALIGN(width, 64); in get_rgb_stride_and_size()
154 w_aligned = GRALLOC_ALIGN(width, AFBC_WIDEBLK_WIDTH_ALIGN); in get_rgb_stride_and_size()
159 w_aligned = GRALLOC_ALIGN(width, AFBC_NORMAL_WIDTH_ALIGN); in get_rgb_stride_and_size()
197 static bool get_afbc_yuv420_8bit_stride_and_size(int width, int height, int *pixel_stride, int *byt… in get_afbc_yuv420_8bit_stride_and_size() argument
226 width = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_BASIC_WIDTH_ALIGN); in get_afbc_yuv420_8bit_stride_and_size()
232 width = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_WIDEBLK_WIDTH_ALIGN); in get_afbc_yuv420_8bit_stride_and_size()
[all …]
/device/linaro/hikey/gralloc960/
Dmali_gralloc_bufferallocation.cpp103 static void get_rgb_stride_and_size(int width, int height, int pixel_size, int *pixel_stride, int *… in get_rgb_stride_and_size() argument
108 stride = width * pixel_size; in get_rgb_stride_and_size()
138 w_aligned = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_BASIC_WIDTH_ALIGN); in get_rgb_stride_and_size()
144 w_aligned = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_WIDEBLK_WIDTH_ALIGN); in get_rgb_stride_and_size()
150 w_aligned = GRALLOC_ALIGN(width, 64); in get_rgb_stride_and_size()
154 w_aligned = GRALLOC_ALIGN(width, AFBC_WIDEBLK_WIDTH_ALIGN); in get_rgb_stride_and_size()
159 w_aligned = GRALLOC_ALIGN(width, AFBC_NORMAL_WIDTH_ALIGN); in get_rgb_stride_and_size()
197 static bool get_afbc_yuv420_8bit_stride_and_size(int width, int height, int *pixel_stride, int *byt… in get_afbc_yuv420_8bit_stride_and_size() argument
226 width = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_BASIC_WIDTH_ALIGN); in get_afbc_yuv420_8bit_stride_and_size()
232 width = GRALLOC_ALIGN(width, AFBC_TILED_HEADERS_WIDEBLK_WIDTH_ALIGN); in get_afbc_yuv420_8bit_stride_and_size()
[all …]
/device/generic/vulkan-cereal/stream-servers/tests/
DTextureDraw_unittest.cpp31 const int width = viewport[2]; in TestTextureDrawBasic() local
35 const int bytes = width * height * bpp; in TestTextureDrawBasic()
50 for (int j = 0; j < width; j++) { in TestTextureDrawBasic()
51 pixels[i * width * bpp + j * bpp + 0] = (0xaa + i) % 0x100; in TestTextureDrawBasic()
52 pixels[i * width * bpp + j * bpp + 1] = (0x00 + j) % 0x100; in TestTextureDrawBasic()
53 pixels[i * width * bpp + j * bpp + 2] = (0x11 + i) % 0x100; in TestTextureDrawBasic()
54 pixels[i * width * bpp + j * bpp + 3] = (0xff + j) % 0x100; in TestTextureDrawBasic()
59 gl->glTexImage2D(GL_TEXTURE_2D, 0, internalformat, width, height, 0, in TestTextureDrawBasic()
79 gl->glReadPixels(0, 0, width, height, format, type, pixelsOut.data()); in TestTextureDrawBasic()
83 size_t rowBytes = width * bpp; in TestTextureDrawBasic()
[all …]
DGLTestUtils.cpp36 testing::AssertionResult ImageMatches(int width, int height, int bpp, int rowLength, in ImageMatches() argument
43 size_t rowBytes = width * bpp; in ImageMatches()
69 TestTexture createTestPatternRGB888(int width, int height) { in createTestPatternRGB888() argument
72 TestTexture res(bpp * width * height); in createTestPatternRGB888()
75 for (int j = 0; j < width; j++) { in createTestPatternRGB888()
76 res[i * bpp * width + j * bpp + 0] = i % 0x100; in createTestPatternRGB888()
77 res[i * bpp * width + j * bpp + 1] = j % 0x100; in createTestPatternRGB888()
78 res[i * bpp * width + j * bpp + 2] = (i * width + j) % 0x100; in createTestPatternRGB888()
85 TestTexture createTestPatternRGBA8888(int width, int height) { in createTestPatternRGBA8888() argument
88 TestTexture res(bpp * width * height); in createTestPatternRGBA8888()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/image_util/
Dloadimage.h18 void LoadA8ToRGBA8(size_t width,
28 void LoadA8ToBGRA8(size_t width,
38 void LoadA32FToRGBA32F(size_t width,
48 void LoadA16FToRGBA16F(size_t width,
58 void LoadL8ToRGBA8(size_t width,
68 void LoadL8ToBGRA8(size_t width,
78 void LoadL32FToRGBA32F(size_t width,
88 void LoadL16FToRGBA16F(size_t width,
98 void LoadLA8ToRGBA8(size_t width,
108 void LoadLA8ToBGRA8(size_t width,
[all …]
Dloadimage.cpp18 void LoadA8ToRGBA8(size_t width, in LoadA8ToRGBA8() argument
45 for (; ((reinterpret_cast<intptr_t>(&dest[x]) & 0xF) != 0 && x < width); x++) in LoadA8ToRGBA8()
50 for (; x + 7 < width; x += 8) in LoadA8ToRGBA8()
65 for (; x < width; x++) in LoadA8ToRGBA8()
84 for (size_t x = 0; x < width; x++) in LoadA8ToRGBA8()
92 void LoadA8ToBGRA8(size_t width, in LoadA8ToBGRA8() argument
103 LoadA8ToRGBA8(width, height, depth, input, inputRowPitch, inputDepthPitch, output, in LoadA8ToBGRA8()
107 void LoadA32FToRGBA32F(size_t width, in LoadA32FToRGBA32F() argument
125 for (size_t x = 0; x < width; x++) in LoadA32FToRGBA32F()
136 void LoadA16FToRGBA16F(size_t width, in LoadA16FToRGBA16F() argument
[all …]
/device/google/coral-kernel/sm8150/kernel-headers/media/
Dmsm_media_info.h899 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument
902 (void)width; in VENUS_EXTRADATA_SIZE()
918 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument
922 if (!width) in VENUS_Y_STRIDE()
931 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
935 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
939 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE()
944 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE()
948 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE()
964 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument
[all …]
/device/google/sunfish-kernel/sm7150/original-kernel-headers/media/
Dmsm_media_info.h899 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument
902 (void)width; in VENUS_EXTRADATA_SIZE()
918 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument
922 if (!width) in VENUS_Y_STRIDE()
931 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
935 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
939 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE()
944 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE()
948 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE()
964 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument
[all …]
/device/google/sunfish-kernel/sm7150/kernel-headers/media/
Dmsm_media_info.h899 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument
902 (void)width; in VENUS_EXTRADATA_SIZE()
918 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument
922 if (!width) in VENUS_Y_STRIDE()
931 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
935 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
939 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE()
944 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE()
948 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE()
964 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument
[all …]
/device/google/coral-kernel/sm8150/original-kernel-headers/media/
Dmsm_media_info.h899 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument
902 (void)width; in VENUS_EXTRADATA_SIZE()
918 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument
922 if (!width) in VENUS_Y_STRIDE()
931 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
935 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
939 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE()
944 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE()
948 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE()
964 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument
[all …]
/device/google/redbull-kernel/sm7250/original-kernel-headers/media/
Dmsm_media_info.h775 unsigned int width) in VENUS_Y_STRIDE() argument
779 if (!width) in VENUS_Y_STRIDE()
787 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
791 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
795 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE()
801 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE()
818 unsigned int width) in VENUS_UV_STRIDE() argument
822 if (!width) in VENUS_UV_STRIDE()
830 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_UV_STRIDE()
834 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_UV_STRIDE()
[all …]
/device/google/redbull-kernel/sm7250/kernel-headers/media/
Dmsm_media_info.h775 unsigned int width) in VENUS_Y_STRIDE() argument
779 if (!width) in VENUS_Y_STRIDE()
787 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
791 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE()
795 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE()
801 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE()
818 unsigned int width) in VENUS_UV_STRIDE() argument
822 if (!width) in VENUS_UV_STRIDE()
830 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_UV_STRIDE()
834 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_UV_STRIDE()
[all …]
/device/generic/goldfish/camera/
DConverters.cpp35 int width, in _YUV420SToRGB565() argument
48 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB565()
64 int width, in _YUV420SToRGB32() argument
77 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB32()
96 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height) in YV12ToRGB565() argument
99 const int y_stride = align(width, 16); in YV12ToRGB565()
105 width, height, y_stride, uv_stride); in YV12ToRGB565()
108 void YV12ToRGB32(const void* yv12, void* rgb, int width, int height) in YV12ToRGB32() argument
111 const int y_stride = align(width, 16); in YV12ToRGB32()
116 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height, in YV12ToRGB32()
[all …]
DCameraRotator.cpp77 CameraRotator::CameraRotator(int width, int height): in CameraRotator() argument
79 mWidth(width), in CameraRotator()
81 mActiveArray{0, 0, width, height}, in CameraRotator()
95 DDD("CameraRotator created with pixel array %d x %d", width, height);
299 i, b.streamId, b.width, b.height, b.format, b.stride, in threadLoop()
303 captureRGB(b.img, b.width, b.height, b.stride, &timestamp); in threadLoop()
308 captureRGBA(b.width, b.height, b.stride, &timestamp, b.buffer); in threadLoop()
311 captureRGBA(b.img, b.width, b.height, b.stride, &timestamp); in threadLoop()
327 bAux.width = b.width; in threadLoop()
330 bAux.stride = b.width; in threadLoop()
[all …]
DEmulatorCameraTest.cpp58 void captureRGBA(uint8_t *img, uint32_t gain, uint32_t width, uint32_t height, Scene& scene, uint32… in captureRGBA() argument
63 unsigned int DivW = (float)sWidth/width * (0x1 << 10); in captureRGBA()
67 uint8_t *px = img + outY * width * 4; in captureRGBA()
71 for (unsigned int outX = 0; outX < width; outX++) { in captureRGBA()
95 void captureYU12(uint8_t *img, uint32_t gain, uint32_t width, uint32_t height, Scene& scene, uint32… in captureYU12() argument
119 unsigned int DivW = (float)sWidth/width * (0x1 << 10); in captureYU12()
122 uint8_t *pxY = img + outY * width; in captureYU12()
123 uint8_t *pxVU = img + (height + outY / 2) * width; in captureYU12()
124 uint8_t *pxU = img + height * width + (outY / 2) * (width / 2); in captureYU12()
125 uint8_t *pxV = pxU + (height / 2) * (width / 2); in captureYU12()
[all …]
DEmulatedFakeRotatingCameraDevice.cpp70 static void rgba8888_to_nv21(uint8_t* input, uint8_t* output, int width, int height) { in rgba8888_to_nv21() argument
72 int yStride = (width + (align -1)) & ~(align-1); in rgba8888_to_nv21()
76 for (int i = 0; i < width; ++i) { in rgba8888_to_nv21()
77 uint8_t R = input[j*width*4 + i*4]; in rgba8888_to_nv21()
78 uint8_t G = input[j*width*4 + i*4 + 1]; in rgba8888_to_nv21()
79 uint8_t B = input[j*width*4 + i*4 + 2]; in rgba8888_to_nv21()
94 static void nv21_to_rgba8888(uint8_t* input, uint32_t * output, int width, int height) { in nv21_to_rgba8888() argument
96 int yStride = (width + (align -1)) & ~(align-1); in nv21_to_rgba8888()
101 for (int i = 0; i < width; ++i) { in nv21_to_rgba8888()
114 void EmulatedFakeRotatingCameraDevice::render(int width, int height) in render() argument
[all …]
/device/generic/vulkan-cereal/third-party/angle/scripts/
Dbmp_to_nv12.py33 width, = struct.unpack("i", bmp_file.read(4)) variable
46 pixels = bmp_file.read(width * height * 3)
51 for i in range(0, width * height):
60 uv_buffer = bytearray(width * height / 2)
61 for i in range(0, width * height / 2, 2):
62 U1 = converted_pixels[((((i / width) * 2) * width) + (i % width)) * 3 + 1]
63 U2 = converted_pixels[((((i / width) * 2) * width) + width + (i % width)) * 3 + 1]
64 V1 = converted_pixels[((((i / width) * 2) * width) + (i % width)) * 3 + 2]
65 V2 = converted_pixels[((((i / width) * 2) * width) + width + (i % width)) * 3 + 2]
70 y_buffer = bytearray(width * height)
[all …]
/device/generic/goldfish/camera/qemu-pipeline3/
DQemuSensor.cpp77 QemuSensor::QemuSensor(const char *deviceName, uint32_t width, uint32_t height, in QemuSensor() argument
80 mWidth(width), in QemuSensor()
82 mActiveArray{0, 0, width, height}, in QemuSensor()
97 ALOGV("QemuSensor created with pixel array %d x %d", width, height);
309 i, b.streamId, b.width, b.height, b.format, b.stride, in threadLoop()
313 captureRGB(b.img, b.width, b.height, b.stride, &timestamp); in threadLoop()
317 captureRGBA(b.width, b.height, b.stride, &timestamp, b.buffer); in threadLoop()
319 captureRGBA(b.img, b.width, b.height, b.stride, &timestamp); in threadLoop()
332 bAux.width = b.width; in threadLoop()
335 bAux.stride = b.width; in threadLoop()
[all …]
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DFormatConversions.cpp34 static int get_rgb_offset(int row, int width, int rgbStride) { in get_rgb_offset() argument
35 return row * width * rgbStride; in get_rgb_offset()
53 void get_yv12_offsets(int width, int height, in get_yv12_offsets() argument
58 uint32_t yStride = (width + (align - 1)) & ~(align-1); in get_yv12_offsets()
68 void get_yuv420p_offsets(int width, int height, in get_yuv420p_offsets() argument
73 uint32_t yStride = (width + (align - 1)) & ~(align-1); in get_yuv420p_offsets()
92 void rgb565_to_yv12(char* dest, char* src, int width, int height, in rgb565_to_yv12() argument
97 int yStride = (width + (align -1)) & ~(align-1); in rgb565_to_yv12()
109 uint16_t *rgb_ptr = rgb_ptr0 + get_rgb_offset(j, width, rgb_stride) / 2; in rgb565_to_yv12()
132 void rgb888_to_yv12(char* dest, char* src, int width, int height, in rgb888_to_yv12() argument
[all …]
/device/generic/vulkan-cereal/stream-servers/
Dgfxstream_unittest.cpp34 static constexpr uint32_t width = 256; member in GfxStreamBackendTest
64 window->initialize("GfxStreamBackendTestWindow", width, height); in SetUp()
84 gfxstream_backend_init(width, height, 0, &cookie, in TEST_F()
94 gfxstream_backend_init(width, height, 0, &cookie, in TEST_F()
98 width, height, width, height); in TEST_F()
102 gfxstream_backend_init(width, height, 0, &cookie, in TEST_F()
114 .width = width, in TEST_F()
126 auto fb = std::make_unique<uint32_t[]>(width * height); in TEST_F()
128 stream_renderer_flush_resource_and_readback(res_id, 0, 0, width, height, in TEST_F()
129 fb.get(), width * height); in TEST_F()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/tests/gl_tests/
DWebGLFramebufferTest.cpp32 void testDepthStencilDepthStencil(GLint width, GLint height);
33 void testDepthStencilRenderbuffer(GLint width,
111 constexpr int width = 64; in TEST_P() local
121 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr); in TEST_P()
131 glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT16, width, height); in TEST_P()
142 glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_STENCIL, width, height); in TEST_P()
151 void testAttachment(GLint width, in testAttachment() argument
166 std::vector<uint8_t> tempBuffer(width * height * 4); in testAttachment()
170 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, tempBuffer.data()); in testAttachment()
194 void testColorRenderbuffer(GLint width, in testColorRenderbuffer() argument
[all …]
/device/generic/goldfish/camera/fake-pipeline2/
DSensor.cpp120 Sensor::Sensor(uint32_t width, uint32_t height): in Sensor() argument
122 mResolution{width, height}, in Sensor()
123 mActiveArray{0, 0, width, height},
134 mSceneWidth((width < Scene::kMaxWidth) ? width : Scene::kMaxWidth),
138 ALOGV("Sensor created with pixel array %d x %d", width, height);
344 i, b.streamId, b.width, b.height, b.format, b.stride, in threadLoop()
351 captureRGB(b.img, gain, b.width, b.height); in threadLoop()
354 captureRGBA(b.img, gain, b.width, b.height); in threadLoop()
363 bAux.width = b.width; in threadLoop()
366 bAux.stride = b.width; in threadLoop()
[all …]
/device/generic/opengl-transport/host/libs/virglrenderer/libOpenglRender/
DYUVConverter.cpp30 static void getPlanarYUVSizes(int width, int height, in getPlanarYUVSizes() argument
57 uint32_t yStride = (width + (align - 1)) & ~(align - 1); in getPlanarYUVSizes()
71 static void getYUVSizes(int width, int height, in getYUVSizes() argument
80 getPlanarYUVSizes(width, height, format, in getYUVSizes()
91 static void getPlanarYUVOffsets(int width, int height, FrameworkFormat format, in getPlanarYUVOffsets() argument
98 getYUVSizes(width, height, format, &totalSize, &yStride, &cStride, &cHeight); in getPlanarYUVOffsets()
135 static void getYUVOffsets(int width, int height, FrameworkFormat format, in getYUVOffsets() argument
141 getPlanarYUVOffsets(width, height, format, in getYUVOffsets()
162 GLsizei width, in createYUVGLTex() argument
173 width, height, 0, in createYUVGLTex()
[all …]
/device/generic/goldfish-opengl/system/GLESv2_enc/
DIOStream2.cpp11 void IOStream::readbackPixels(void* context, int width, int height, unsigned int format, unsigned i… in readbackPixels() argument
21 ctx->state()->getPackingOffsets2D(width, height, format, type, in readbackPixels()
30 width, height, 1, format, type, 1 /* is pack */); in readbackPixels()
36 } else if (pixelRowSize == totalRowSize && (pixelRowSize == width * bpp)) { in readbackPixels()
56 if (pixelRowSize != width * bpp) { in readbackPixels()
57 size_t rowSlack = pixelRowSize - width * bpp; in readbackPixels()
59 readback(start, width * bpp); in readbackPixels()
76 void IOStream::uploadPixels(void* context, int width, int height, int depth, unsigned int format, u… in uploadPixels() argument
87 ctx->state()->getUnpackingOffsets2D(width, height, format, type, in uploadPixels()
96 width, height, 1, format, type, 0 /* is unpack */); in uploadPixels()
[all …]
/device/generic/vulkan-cereal/third-party/angle/doc/
DdEQP-Charts.md11 <iframe id="GLES 2.0 Desktop OpenGL Win10 NVIDIA" width="1200px" height="371px" class="noborder" sr…
13 <iframe id="GLES 3.0 Desktop OpenGL Win10 NVIDIA" width="1200px" height="371px" class="noborder" sr…
15 <iframe id="GLES 3.1 Desktop OpenGL Win10 NVIDIA" width="1200px" height="371px" class="noborder" sr…
17 <iframe id="EGL Desktop OpenGL Win10 NVIDIA" width="1200px" height="371px" class="noborder" src="ht…
23 <iframe id="GLES 2.0 Vulkan Win10 NVIDIA" width="1200px" height="371px" class="noborder" src="https…
25 <iframe id="GLES 3.0 Vulkan Win10 NVIDIA" width="1200px" height="371px" class="noborder" src="https…
27 <iframe id="GLES 3.1 Vulkan Win10 NVIDIA" width="1200px" height="371px" class="noborder" src="https…
29 <iframe id="EGL Vulkan Win10 NVIDIA" width="1200px" height="371px" class="noborder" src="https://do…
33 <iframe id="GLES 2.0 Vulkan khr Win10 NVIDIA" width="1200px" height="371px" class="noborder" src="h…
35 <iframe id="GLES 3.0 Vulkan khr Win10 NVIDIA" width="1200px" height="371px" class="noborder" src="h…
[all …]

12345678910>>...47