/external/mesa3d/src/mapi/glapi/gen/ |
glX_proto_common.py | 65 compsize = '__glImageSize(%s, %s, %s, %s, %s, %s)' % (w, h, d, param.img_format, param.img_type, param.img_target)
|
glX_proto_send.py | 554 print ' (*gc->fillImage)(gc, %s, %s, %s, %s, %s, %s, %s, %s, %s);' % (dim_str, width, height, depth, param.img_format, param.img_type, param.name, pcPtr, pixHeaderPtr) 559 print '__glXSendLargeImage(gc, compsize, %s, %s, %s, %s, %s, %s, %s, %s, %s);' % (dim_str, width, height, depth, param.img_format, param.img_type, param.name, pcPtr, pixHeaderPtr) 594 if p.is_image() and (p.img_format != "GL_COLOR_INDEX" or p.img_type != "GL_BITMAP"): 667 if p.img_format != "GL_COLOR_INDEX" or p.img_type != "GL_BITMAP": 700 print ' __glEmptyImage(gc, 3, %s, %s, %s, %s, %s, %s_data(reply), %s);' % (w, h, d, output.img_format, output.img_type, xcb_name, output.name) 737 if img.img_format != "GL_COLOR_INDEX" or img.img_type != "GL_BITMAP": 758 print " __glXReadPixelReply(dpy, gc, %u, 0, 0, 0, %s, %s, %s, GL_TRUE);" % (dim, p.img_format, p.img_type, p.name) 760 print " __glXReadPixelReply(dpy, gc, %u, %s, %s, %s, %s, %s, %s, GL_FALSE);" % (dim, w, h, d, p.img_format, p.img_type, p.name) [all...] |
glX_proto_size.py | 575 if p.name in [w, h, d, img.img_format, img.img_type, img.img_target]: 589 print ' return __glXImageSize(%s, %s, %s, %s, %s, %s,' % (img.img_format, img.img_type, img.img_target, w, h, d )
|
glX_proto_recv.py | 508 if not (img.img_type == "GL_BITMAP" and img.img_format == "GL_COLOR_INDEX"):
|
gl_XML.py | 463 self.img_type = element.nsProp('img_type', None)
|
/external/e2fsprogs/misc/ |
e2image.c | 1438 int img_type = 0; local [all...] |
/external/opencv3/modules/video/test/ |
test_camshift.cpp | 67 int img_type; member in class:CV_TrackBaseTest 126 img = cvCreateMat( img_size.height, img_size.width, img_type ); 143 if( img_type == CV_8U ) 174 img_type = cvtest::randInt(rng) % 2 ? CV_32F : CV_8U; 175 img_type = CV_8U;
|
/external/opencv3/modules/imgproc/test/ |
test_histograms.cpp | 78 int img_type; member in class:CV_BaseHistTest 159 img_type = cvtest::randInt(rng) % 2 ? CV_32F : CV_8U; 163 if( img_type < CV_32F ) 165 low = cvtest::getMinVal(img_type); 166 high = cvtest::getMaxVal(img_type); 1185 img_type == CV_8U ? IPL_DEPTH_8U : IPL_DEPTH_32F, nch ); [all...] |