/device/amlogic/yukawa/hal/gralloc/ |
D | mali_gralloc_bufferallocation.cpp | 103 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/ |
D | mali_gralloc_bufferallocation.cpp | 103 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/goldfish/camera/ |
D | Converters.cpp | 35 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 …]
|
D | EmulatorCameraTest.cpp | 58 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 …]
|
D | EmulatedFakeRotatingCameraDevice.cpp | 71 static void rgba8888_to_nv21(uint8_t* input, uint8_t* output, int width, int height) { in rgba8888_to_nv21() argument 73 int yStride = (width + (align -1)) & ~(align-1); in rgba8888_to_nv21() 77 for (int i = 0; i < width; ++i) { in rgba8888_to_nv21() 78 uint8_t R = input[j*width*4 + i*4]; in rgba8888_to_nv21() 79 uint8_t G = input[j*width*4 + i*4 + 1]; in rgba8888_to_nv21() 80 uint8_t B = input[j*width*4 + i*4 + 2]; in rgba8888_to_nv21() 95 static void nv21_to_rgba8888(uint8_t* input, uint32_t * output, int width, int height) { in nv21_to_rgba8888() argument 97 int yStride = (width + (align -1)) & ~(align-1); in nv21_to_rgba8888() 102 for (int i = 0; i < width; ++i) { in nv21_to_rgba8888() 115 void EmulatedFakeRotatingCameraDevice::render(int width, int height) in render() argument [all …]
|
/device/google/cuttlefish/guest/hals/camera/ |
D | Converters.cpp | 30 int width, int height) { in _YUV420SToRGB565() argument 35 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB565() 56 const uint8_t* V, int dUV, uint32_t* rgb, int width, in _YUV420SToRGB32() argument 62 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB32() 82 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height) { in YV12ToRGB565() argument 83 const int pix_total = width * height; in YV12ToRGB565() 87 _YUV420SToRGB565(Y, U, V, 1, reinterpret_cast<uint16_t*>(rgb), width, height); in YV12ToRGB565() 90 void YV12ToRGB32(const void* yv12, void* rgb, int width, int height) { in YV12ToRGB32() argument 91 const int pix_total = width * height; in YV12ToRGB32() 95 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YV12ToRGB32() [all …]
|
D | Compressor.cpp | 29 int width, int height, int quality, in compress() argument 31 if (!configureCompressor(width, height, quality)) { in compress() 44 bool Compressor::configureCompressor(int width, int height, int quality) { in configureCompressor() argument 58 mCompressInfo.image_width = width; in configureCompressor() 84 std::vector<uint8_t>& vRows, int rowIndex, int width, in deinterleave() argument 91 for (int i = 0; i < (width >> 1); ++i) { in deinterleave() 92 int index = row * (width >> 1) + i; in deinterleave() 108 int width = mCompressInfo.image_width; in compressData() local 111 const uint8_t* vuPlanar = data + (width * height); in compressData() 112 std::vector<uint8_t> uRows(8 * (width >> 1)); in compressData() [all …]
|
D | CameraConfiguration.cpp | 148 bool ValueToCameraResolution(const std::string& width, in ValueToCameraResolution() argument 153 resolution->width = strtol(width.c_str(), &endptr, 10); in ValueToCameraResolution() 154 if (endptr != width.c_str() + width.size()) { in ValueToCameraResolution() 156 __FUNCTION__, width.c_str()); in ValueToCameraResolution() 168 if (resolution->width <= 0 || resolution->height <= 0) { in ValueToCameraResolution() 170 resolution->width, resolution->height); in ValueToCameraResolution() 175 if ((resolution->width & 7) != 0 || (resolution->height & 7) != 0) { in ValueToCameraResolution() 179 __FUNCTION__, resolution->width, resolution->height, in ValueToCameraResolution() 180 resolution->width & 7, resolution->height & 7); in ValueToCameraResolution()
|
/device/google/coral-kernel/sm8150/kernel-headers/media/ |
D | msm_media_info.h | 899 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/ |
D | msm_media_info.h | 899 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/bonito/sdm710/kernel-headers/media/ |
D | msm_media_info.h | 816 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument 819 (void)width; in VENUS_EXTRADATA_SIZE() 835 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument 839 if (!width) in VENUS_Y_STRIDE() 848 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE() 852 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE() 857 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE() 861 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE() 877 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument 881 if (!width) in VENUS_UV_STRIDE() [all …]
|
/device/google/crosshatch/sdm845/original-kernel-headers/media/ |
D | msm_media_info.h | 816 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument 819 (void)width; in VENUS_EXTRADATA_SIZE() 835 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument 839 if (!width) in VENUS_Y_STRIDE() 848 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE() 852 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE() 857 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE() 861 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE() 877 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument 881 if (!width) in VENUS_UV_STRIDE() [all …]
|
/device/google/crosshatch/sdm845/kernel-headers/media/ |
D | msm_media_info.h | 816 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument 819 (void)width; in VENUS_EXTRADATA_SIZE() 835 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument 839 if (!width) in VENUS_Y_STRIDE() 848 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE() 852 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE() 857 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE() 861 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE() 877 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument 881 if (!width) in VENUS_UV_STRIDE() [all …]
|
/device/google/bonito/sdm710/original-kernel-headers/media/ |
D | msm_media_info.h | 816 static __inline__ unsigned int VENUS_EXTRADATA_SIZE(int width, int height) in VENUS_EXTRADATA_SIZE() argument 819 (void)width; in VENUS_EXTRADATA_SIZE() 835 static __inline__ unsigned int VENUS_Y_STRIDE(int color_fmt, int width) in VENUS_Y_STRIDE() argument 839 if (!width) in VENUS_Y_STRIDE() 848 stride = MSM_MEDIA_ALIGN(width, alignment); in VENUS_Y_STRIDE() 852 stride = MSM_MEDIA_ALIGN(width, 192); in VENUS_Y_STRIDE() 857 stride = MSM_MEDIA_ALIGN(width * 2, alignment); in VENUS_Y_STRIDE() 861 stride = MSM_MEDIA_ALIGN(width*2, alignment); in VENUS_Y_STRIDE() 877 static __inline__ unsigned int VENUS_UV_STRIDE(int color_fmt, int width) in VENUS_UV_STRIDE() argument 881 if (!width) in VENUS_UV_STRIDE() [all …]
|
/device/generic/goldfish/camera/qemu-pipeline3/ |
D | QemuSensor.cpp | 57 QemuSensor::QemuSensor(const char *deviceName, uint32_t width, uint32_t height, in QemuSensor() argument 60 mWidth(width), in QemuSensor() 62 mActiveArray{0, 0, width, height}, in QemuSensor() 76 ALOGV("QemuSensor created with pixel array %d x %d", width, height); 288 i, b.streamId, b.width, b.height, b.format, b.stride, in threadLoop() 292 captureRGB(b.img, b.width, b.height, b.stride, ×tamp); in threadLoop() 296 captureRGBA(b.width, b.height, b.stride, ×tamp, b.buffer); in threadLoop() 298 captureRGBA(b.img, b.width, b.height, b.stride, ×tamp); in threadLoop() 311 bAux.width = b.width; in threadLoop() 314 bAux.stride = b.width; in threadLoop() [all …]
|
/device/generic/goldfish-opengl/system/OpenglSystemCommon/ |
D | FormatConversions.h | 23 void get_yv12_offsets(int width, int height, 27 void get_yuv420p_offsets(int width, int height, 32 void rgb565_to_yv12(char* dest, char* src, int width, int height, 34 void rgb888_to_yv12(char* dest, char* src, int width, int height, 36 void rgb888_to_yuv420p(char* dest, char* src, int width, int height, 38 void yv12_to_rgb565(char* dest, char* src, int width, int height, 40 void yv12_to_rgb888(char* dest, char* src, int width, int height, 42 void yuv420p_to_rgb888(char* dest, char* src, int width, int height, 46 int width, int height, int top, int left,
|
D | FormatConversions.cpp | 34 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() 50 void get_yv12_offsets(int width, int height, in get_yv12_offsets() argument 55 uint32_t yStride = (width + (align - 1)) & ~(align-1); in get_yv12_offsets() 65 void get_yuv420p_offsets(int width, int height, in get_yuv420p_offsets() argument 70 uint32_t yStride = (width + (align - 1)) & ~(align-1); in get_yuv420p_offsets() 89 void rgb565_to_yv12(char* dest, char* src, int width, int height, in rgb565_to_yv12() argument 94 int yStride = (width + (align -1)) & ~(align-1); in rgb565_to_yv12() 106 uint16_t *rgb_ptr = rgb_ptr0 + get_rgb_offset(j, width, rgb_stride) / 2; in rgb565_to_yv12() 129 void rgb888_to_yv12(char* dest, char* src, int width, int height, in rgb888_to_yv12() argument [all …]
|
/device/generic/goldfish-opengl/system/GLESv2_enc/ |
D | IOStream2.cpp | 11 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/google/cuttlefish/host/frontend/webrtc/ |
D | cvd_video_frame_buffer.cpp | 27 inline int AlignStride(int width) { in AlignStride() argument 28 return AlignToPowerOf2(width, kLogAlignment); in AlignStride() 33 CvdVideoFrameBuffer::CvdVideoFrameBuffer(int width, int height) in CvdVideoFrameBuffer() argument 34 : width_(width), in CvdVideoFrameBuffer() 36 y_(AlignStride(width) * height + kPlanePadding), in CvdVideoFrameBuffer() 37 u_(AlignStride((width + 1) / 2) * ((height + 1) / 2) + kPlanePadding), in CvdVideoFrameBuffer() 38 v_(AlignStride((width + 1) / 2) * ((height + 1) / 2) + kPlanePadding) {} in CvdVideoFrameBuffer() 40 int CvdVideoFrameBuffer::width() const { return width_; } in width() function in cuttlefish::CvdVideoFrameBuffer
|
/device/generic/opengl-transport/host/libs/virglrenderer/libOpenglRender/ |
D | YUVConverter.cpp | 30 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/linaro/hikey/hifi/xaf/hifi-dpf/core/util/ |
D | tinyvprintf.c | 71 int width = 0, len = 1, rightjust = 1; in tiny_vsprintf() local 110 width--; in tiny_vsprintf() 165 case '0': if (width == 0) pad = '0'; /*FALLTHROUGH*/ in tiny_vsprintf() 167 width = ((width<<1) + (width<<3)) + (c - '0'); in tiny_vsprintf() 176 if (len < width) { in tiny_vsprintf() 177 total += width; in tiny_vsprintf() 179 do { *out++ = pad; } while (len < --width); in tiny_vsprintf() 183 for (; len < width; len++) *out++ = space; in tiny_vsprintf()
|
/device/generic/goldfish/camera/fake-pipeline2/ |
D | Sensor.cpp | 101 Sensor::Sensor(uint32_t width, uint32_t height): in Sensor() argument 103 mResolution{width, height}, in Sensor() 104 mActiveArray{0, 0, width, height}, 114 mSceneWidth((width < Scene::kMaxWidth) ? width : Scene::kMaxWidth), 118 ALOGV("Sensor created with pixel array %d x %d", width, height); 324 i, b.streamId, b.width, b.height, b.format, b.stride, in threadLoop() 331 captureRGB(b.img, gain, b.width, b.height); in threadLoop() 334 captureRGBA(b.img, gain, b.width, b.height); in threadLoop() 343 bAux.width = b.width; in threadLoop() 346 bAux.stride = b.width; in threadLoop() [all …]
|
/device/generic/goldfish/camera/jpeg-stub/ |
D | Compressor.cpp | 29 int width, int height, int quality, in compress() argument 31 if (!configureCompressor(width, height, quality)) { in compress() 43 bool Compressor::configureCompressor(int width, int height, int quality) { in configureCompressor() argument 57 mCompressInfo.image_width = width; in configureCompressor() 89 int width = mCompressInfo.image_width; in compressData() local 92 const uint8_t* uPlanar = yPlanar + width * height; in compressData() 93 const uint8_t* vPlanar = uPlanar + width * height / 4; in compressData() 114 y[i] = yPlanar + (mCompressInfo.next_scanline + i) * width; in compressData() 119 cb[i/2] = uPlanar + (mCompressInfo.next_scanline + i) * width / 4; in compressData() 120 cr[i/2] = vPlanar + (mCompressInfo.next_scanline + i) * width / 4; in compressData()
|
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/ |
D | GLESTextureUtils.cpp | 206 static int computePackingOffset(GLenum format, GLenum type, GLsizei width, GLsizei height, int alig… in computePackingOffset() argument 207 GLsizei alignedPitch = computePitch(width, format, type, align); in computePackingOffset() 216 GLsizei width, GLsizei height, GLsizei depth, in computeTextureStartEnd() argument 227 GLsizei inputWidth = (unpackRowLength == 0) ? width : unpackRowLength; in computeTextureStartEnd() 231 …ALOGV("%s: input idim %d %d %d w p h %d %d %d:", __FUNCTION__, width, height, depth, inputWidth, i… in computeTextureStartEnd() 244 GLsizei width, GLsizei height, GLsizei depth, in computeTotalImageSize() argument 255 width, height, depth, in computeTotalImageSize() 269 GLsizei width, GLsizei height, GLsizei depth, in computeNeededBufferSize() argument 280 width, height, depth, in computeNeededBufferSize() 294 GLsizei width, GLsizei height, in computePackingOffsets2D() argument [all …]
|
/device/generic/goldfish-opengl/system/renderControl_enc/ |
D | renderControl_entry.cpp | 18 uint32_t rcCreateWindowSurface(uint32_t config, uint32_t width, uint32_t height); 20 uint32_t rcCreateColorBuffer(uint32_t width, uint32_t height, GLenum internalFormat); 31 …void rcReadColorBuffer(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum f… 32 …int rcUpdateColorBuffer(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum … 42 …int rcUpdateColorBufferDMA(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLen… 43 …uint32_t rcCreateColorBufferDMA(uint32_t width, uint32_t height, GLenum internalFormat, int framew… 54 …void rcReadColorBufferYUV(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, void*… 56 …void rcCreateColorBufferWithHandle(uint32_t width, uint32_t height, GLenum internalFormat, uint32_… 127 uint32_t rcCreateWindowSurface(uint32_t config, uint32_t width, uint32_t height) in rcCreateWindowSurface() argument 130 return ctx->rcCreateWindowSurface(ctx, config, width, height); in rcCreateWindowSurface() [all …]
|