Home | History | Annotate | Download | only in libcopybit

Lines Matching defs:info

442 static int calculate_yuv_offset_and_stride(const bufferInfo& info,
445 int width = info.width;
446 int height = info.height;
447 int format = info.format;
553 bufferInfo info;
554 info.width = rhs->w;
555 info.height = rhs->h;
556 info.format = rhs->format;
559 status = calculate_yuv_offset_and_stride(info, yuvInfo);
856 /** Get a static info value */
933 static void populate_buffer_info(struct copybit_image_t const *img, bufferInfo& info)
935 info.width = img->w;
936 info.height = img->h;
937 info.format = img->format;
943 static size_t get_size(const bufferInfo& info)
946 int w = info.width;
947 int h = info.height;
949 switch(info.format) {
973 static int get_temp_buffer(const bufferInfo& info, alloc_data& data)
980 data.size = get_size(info);
1025 // Copy the info.