HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 751 - 775 of 2204) sorted by null

<<31323334353637383940>>

  /external/wpa_supplicant_8/wpa_supplicant/
notify.c 593 void wpas_notify_certification(struct wpa_supplicant *wpa_s, int depth,
598 "depth=%d subject='%s'%s%s",
599 depth, subject,
612 "depth=%d subject='%s' cert=%s",
613 depth, subject, cert_hex);
619 wpa_supplicant_dbus_notify_certification(wpa_s, depth, subject,
622 wpas_dbus_signal_certification(wpa_s, depth, subject, cert_hash, cert);
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 286 MtpPropertyList getPropertyList(int handle, int format, int depth) {
287 //Log.d(TAG, "getPropertyList handle: " + handle + " format: " + format + " depth: " + depth);
288 if (depth > 1) {
289 // we only support depth 0 and 1
290 // depth 0: single object, depth 1: immediate children
303 if (depth == 1) {
316 if (depth == 1) {
327 if (depth > 0 || handle == 0xFFFFFFFF || mColumns.length > 1)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texgetimage.c 72 * glGetTexImage for depth/Z pixels.
81 const GLint depth = texImage->Depth; local
90 for (img = 0; img < depth; img++) {
122 * glGetTexImage for depth/stencil pixels.
131 const GLint depth = texImage->Depth; local
134 for (img = 0; img < depth; img++) {
176 const GLint depth = texImage->Depth; local
236 const GLuint depth = texImage->Depth; local
329 GLuint depth = texImage->Depth; local
    [all...]
  /external/mesa3d/src/mesa/main/
texgetimage.c 72 * glGetTexImage for depth/Z pixels.
81 const GLint depth = texImage->Depth; local
90 for (img = 0; img < depth; img++) {
122 * glGetTexImage for depth/stencil pixels.
131 const GLint depth = texImage->Depth; local
134 for (img = 0; img < depth; img++) {
176 const GLint depth = texImage->Depth; local
236 const GLuint depth = texImage->Depth; local
329 GLuint depth = texImage->Depth; local
    [all...]
  /external/opencv/cv/src/
cvtemplmatch.cpp 62 int depth, templ_depth, corr_depth, max_depth = CV_32F, local
78 "Template (kernel) must be of the same depth as the input image, or be 32f" );
83 "The output image must have the same depth as the input image, or be 32f/64f" );
91 depth = CV_MAT_DEPTH(img->type);
98 max_depth = MAX( max_depth, depth );
100 if( depth > CV_8U )
142 if( cn > 1 && depth != max_depth )
144 (blocksize.height + templ->rows - 1)*CV_ELEM_SIZE(depth));
233 if( depth != max_depth )
234 planes[i] = cvInitMatHeader( &temp, y2 - y1, x2 - x1, depth, _buf )
334 int depth, cn; local
    [all...]
cvmorph.cpp 166 int depth = CV_MAT_DEPTH(_src_dst_type); local
198 if( depth == CV_8U )
201 else if( depth == CV_16U )
204 else if( depth == CV_32F )
211 if( depth == CV_8U )
214 else if( depth == CV_16U )
217 else if( depth == CV_32F )
249 if( depth == CV_8U )
251 else if( depth == CV_16U )
253 else if( depth == CV_32F
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/
SettingsDialog.java 378 int depth = -1; local
380 depth = 0;
382 depth = Integer.parseInt(depthString.substring(0, depthString.indexOf(' ')));
405 * if (!fullscreen) { //query the current bit depth of the desktop int
407 * .getDefaultScreenDevice().getDisplayMode().getBitDepth(); if (depth >
408 * curDepth) { showError(this,"Cannot choose a higher bit depth in
409 * windowed " + "mode than your current desktop bit depth"); return
429 source.setBitsPerPixel(depth);
448 + "The combination of bit depth and refresh rate is not supported.");
492 * <code>updateDisplayChoices</code> updates the available color depth an
605 String depth = modes[i].getBitDepth() + " bpp"; local
    [all...]
  /external/valgrind/main/callgrind/
clo.c 273 static void print_config_node(int depth, int hash, config_node* node)
281 if (depth>40) depth=40;
282 VG_(printf)("%s", sp+40-depth);
291 print_config_node(depth+1, i, n);
295 if (node->wild_char) print_config_node(depth+1, -2, node->wild_char);
296 if (node->wild_star) print_config_node(depth+1, -3, node->wild_star);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_surface.c 81 uint32_t width, height, depth; local
95 depth = u_minify(mt->base.base.depth0, level);
97 /* layer has to be < depth, and depth > tile depth / 2 */
102 depth = 1;
124 PUSH_DATA (push, depth);
237 for (i = 0; i < src_box->depth; ++i) {
261 for (; dst_layer < dstz + src_box->depth; ++dst_layer, ++src_layer) {
310 PUSH_DATA(push, dst->u.tex.first_layer + sf->depth);
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_surface.c 81 uint32_t width, height, depth; local
95 depth = u_minify(mt->base.base.depth0, level);
97 /* layer has to be < depth, and depth > tile depth / 2 */
102 depth = 1;
124 PUSH_DATA (push, depth);
237 for (i = 0; i < src_box->depth; ++i) {
261 for (; dst_layer < dstz + src_box->depth; ++dst_layer, ++src_layer) {
310 PUSH_DATA(push, dst->u.tex.first_layer + sf->depth);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_fs.c 34 * - early depth test
37 * - depth/stencil test
49 * depth/stencil test and blending is better done in the type that most closely
50 * matches the depth/stencil and color buffer respectively.
212 * Generate the fragment shader, depth/stencil test, and alpha tests.
254 if (key->depth.enabled ||
263 /* With alpha test and kill, can do the depth test early
265 * special deferred depth write once the final mask value
276 if (!(key->depth.enabled && key->depth.writemask) &
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 34 * - early depth test
37 * - depth/stencil test
49 * depth/stencil test and blending is better done in the type that most closely
50 * matches the depth/stencil and color buffer respectively.
212 * Generate the fragment shader, depth/stencil test, and alpha tests.
254 if (key->depth.enabled ||
263 /* With alpha test and kill, can do the depth test early
265 * special deferred depth write once the final mask value
276 if (!(key->depth.enabled && key->depth.writemask) &
    [all...]
  /external/opencv/cxcore/src/
cxarray.cpp 549 "Depth is not the same for all arrays" );
989 int depth = img->depth; local
992 if( img->depth == IPL_DEPTH_32F || img->nChannels == 64 )
994 img->width *= img->depth == IPL_DEPTH_32F ? sizeof(float) : sizeof(double);
995 img->depth = IPL_DEPTH_8U;
1001 img->depth = depth;
1084 pix_size = ((img->depth & 255) >> 3)*img->nChannels;
1705 int depth = type & CV_MAT_DEPTH_MASK; local
2793 int depth, order; local
3192 int depth; local
    [all...]
cxmathfuncs.cpp 334 int depth; local
351 depth = CV_MAT_DEPTH( xmat->type );
352 if( depth < CV_32F )
392 if( depth == CV_64F && angle )
397 else if( depth == CV_32F && mag )
402 if( depth == CV_32F )
574 int depth; local
582 depth = CV_MAT_DEPTH( angle->type );
583 if( depth < CV_32F )
645 if( depth == CV_32F
1712 int depth; local
    [all...]
  /development/ndk/platforms/android-5/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.c 329 uint32_t depth = capture->stack_depth; local
330 if (depth < capture->max_stack_depth) {
331 struct XRayTraceStackEntry* se = &capture->stack[depth];
333 se->depth_addr = XRAY_PACK_DEPTH_ADDR(depth, addr);
357 uint32_t depth = capture->stack_depth; local
358 struct XRayTraceStackEntry* se = &capture->stack[depth];
424 int depth = capture->stack_depth - 1; local
425 struct XRayTraceStackEntry* se = &capture->stack[depth];
456 int depth = capture->stack_depth - 1; local
457 struct XRayTraceStackEntry* se = &capture->stack[depth];
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES30.java 366 // C function void glTexImage3D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels )
374 int depth,
381 // C function void glTexImage3D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei offset )
389 int depth,
396 // C function void glTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels )
406 int depth,
412 // C function void glTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei offset )
422 int depth,
442 // C function void glCompressedTexImage3D ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data )
450 int depth,
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/GLES2/
gl2ext.h 487 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
488 GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
490 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
491 GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
494 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
495 typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
497 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
498 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);
    [all...]

Completed in 1021 milliseconds

<<31323334353637383940>>