OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bmih
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/printing/
emf_win.cc
346
const BITMAPINFOHEADER *
bmih
=
local
354
if (
bmih
->biCompression == BI_JPEG) {
356
bmih
->biSizeImage)) {
358
bitmap.reset(gfx::JPEGCodec::Decode(bits,
bmih
->biSizeImage));
360
} else if (
bmih
->biCompression == BI_PNG) {
362
bmih
->biSizeImage)) {
365
gfx::PNGCodec::Decode(bits,
bmih
->biSizeImage, bitmap.get());
/external/libpng/contrib/gregbook/
rpng-win.c
159
static BITMAPINFOHEADER *
bmih
;
variable
513
bmih
= (BITMAPINFOHEADER *)dib;
514
bmih
->biSize = sizeof(BITMAPINFOHEADER);
515
bmih
->biWidth = image_width;
516
bmih
->biHeight = -((long)image_height);
517
bmih
->biPlanes = 1;
518
bmih
->biBitCount = 24;
519
bmih
->biCompression = 0;
705
wimage_data, (BITMAPINFO *)
bmih
,
rpng2-win.c
265
static BITMAPINFOHEADER *
bmih
;
variable
718
bmih
= (BITMAPINFOHEADER *)dib;
719
bmih
->biSize = sizeof(BITMAPINFOHEADER);
720
bmih
->biWidth = rpng2_info.width;
721
bmih
->biHeight = -((long)rpng2_info.height);
722
bmih
->biPlanes = 1;
723
bmih
->biBitCount = 24;
724
bmih
->biCompression = 0;
[
all
...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug.c
647
struct bmp_info_header
bmih
;
local
659
bmih
.biSize = 40;
660
bmih
.biWidth = width;
661
bmih
.biHeight = height;
662
bmih
.biPlanes = 1;
663
bmih
.biBitCount = 32;
664
bmih
.biCompression = 0;
665
bmih
.biSizeImage = height*width*4;
666
bmih
.biXPelsPerMeter = 0;
667
bmih
.biYPelsPerMeter = 0
[
all
...]
/external/mesa3d/src/gallium/auxiliary/util/
u_debug.c
647
struct bmp_info_header
bmih
;
local
659
bmih
.biSize = 40;
660
bmih
.biWidth = width;
661
bmih
.biHeight = height;
662
bmih
.biPlanes = 1;
663
bmih
.biBitCount = 32;
664
bmih
.biCompression = 0;
665
bmih
.biSizeImage = height*width*4;
666
bmih
.biXPelsPerMeter = 0;
667
bmih
.biYPelsPerMeter = 0
[
all
...]
Completed in 1120 milliseconds