/external/mesa3d/src/egl/main/ |
D | eglfallbacks.c | 55 memset(&drv->API, 0, sizeof(drv->API)); in _eglInitDriverFallbacks() 58 drv->API.Initialize = NULL; in _eglInitDriverFallbacks() 59 drv->API.Terminate = NULL; in _eglInitDriverFallbacks() 61 drv->API.GetConfigs = _eglGetConfigs; in _eglInitDriverFallbacks() 62 drv->API.ChooseConfig = _eglChooseConfig; in _eglInitDriverFallbacks() 63 drv->API.GetConfigAttrib = _eglGetConfigAttrib; in _eglInitDriverFallbacks() 65 drv->API.CreateContext = (CreateContext_t) _eglReturnFalse; in _eglInitDriverFallbacks() 66 drv->API.DestroyContext = (DestroyContext_t) _eglReturnFalse; in _eglInitDriverFallbacks() 67 drv->API.MakeCurrent = (MakeCurrent_t) _eglReturnFalse; in _eglInitDriverFallbacks() 68 drv->API.QueryContext = _eglQueryContext; in _eglInitDriverFallbacks() [all …]
|
D | README.txt | 8 1. An EGL API dispatcher. This directly routes all the eglFooBar() API 11 2. Fallbacks for EGL API functions. A driver _could_ implement all the 12 EGL API calls from scratch. But in many cases, the fallbacks provided 26 As part of initialization, the dispatch table in _EGLDriver->API must be 29 driver->API.Initialize and driver->API.Terminate _must_ be implemented 34 to the driver->API.Initialize() function. Any additional driver 59 When eglTerminate() is called, the driver->API.Terminate() function is
|
D | eglapi.c | 345 drv->API.Terminate(drv, disp); in eglTerminate() 362 ret = drv->API.QueryString(drv, disp, name); in eglQueryString() 377 ret = drv->API.GetConfigs(drv, disp, configs, config_size, num_config); in eglGetConfigs() 392 ret = drv->API.ChooseConfig(drv, disp, attrib_list, configs, in eglChooseConfig() 409 ret = drv->API.GetConfigAttrib(drv, disp, conf, attribute, value); in eglGetConfigAttrib() 437 context = drv->API.CreateContext(drv, disp, conf, share, attrib_list); in eglCreateContext() 454 ret = drv->API.DestroyContext(drv, disp, context); in eglDestroyContext() 498 ret = drv->API.MakeCurrent(drv, disp, draw_surf, read_surf, context); in eglMakeCurrent() 514 ret = drv->API.QueryContext(drv, disp, context, attribute, value); in eglQueryContext() 534 surf = drv->API.CreateWindowSurface(drv, disp, conf, window, attrib_list); in eglCreateWindowSurface() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | api_exec.c | 136 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() 148 if (ctx->API == API_OPENGL || ctx->API == API_OPENGL_CORE) in _mesa_create_exec_table() 157 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() 163 if (ctx->API == API_OPENGL) { in _mesa_create_exec_table() 167 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() 171 if (ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() 174 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() 180 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() 187 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() 193 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in _mesa_create_exec_table() [all …]
|
D | enable.c | 276 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_set_enable() 284 if (ctx->API != API_OPENGL) in _mesa_set_enable() 333 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_set_enable() 369 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_set_enable() 384 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_set_enable() 399 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_set_enable() 411 if (!_mesa_is_desktop_gl(ctx) && ctx->API != API_OPENGLES) in _mesa_set_enable() 420 if (ctx->API != API_OPENGL) in _mesa_set_enable() 429 if (ctx->API != API_OPENGL) in _mesa_set_enable() 437 if (!_mesa_is_desktop_gl(ctx) && ctx->API != API_OPENGLES) in _mesa_set_enable() [all …]
|
D | getstring.c | 42 switch (ctx->API) { in shading_language_version() 129 if (ctx->API == API_OPENGL_CORE) { in _mesa_GetString() 136 if (ctx->API == API_OPENGLES) in _mesa_GetString() 143 if (ctx->API == API_OPENGL && in _mesa_GetString() 215 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_GetPointerv() 220 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_GetPointerv() 225 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_GetPointerv() 230 if (ctx->API != API_OPENGL) in _mesa_GetPointerv() 235 if (ctx->API != API_OPENGL) in _mesa_GetPointerv() 240 if (ctx->API != API_OPENGL) in _mesa_GetPointerv() [all …]
|
D | hint.c | 54 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_Hint() 62 if (!_mesa_is_desktop_gl(ctx) && ctx->API != API_OPENGLES) in _mesa_Hint() 70 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_Hint() 78 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) in _mesa_Hint() 96 if (ctx->API != API_OPENGL) in _mesa_Hint() 116 if (ctx->API == API_OPENGL_CORE) in _mesa_Hint() 126 if (ctx->API == API_OPENGLES || !ctx->Extensions.ARB_fragment_shader) in _mesa_Hint()
|
D | vtxfmt.c | 51 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in install_vtxfmt() 60 if (ctx->API == API_OPENGL) { in install_vtxfmt() 64 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { in install_vtxfmt() 98 if (ctx->API == API_OPENGL) { in install_vtxfmt() 110 if (ctx->API != API_OPENGLES2 || _mesa_is_gles3(ctx)) { in install_vtxfmt() 116 if (ctx->API != API_OPENGLES2) { in install_vtxfmt() 126 if (ctx->API != API_OPENGLES2 || _mesa_is_gles3(ctx)) { in install_vtxfmt() 131 if (ctx->API != API_OPENGLES2) { in install_vtxfmt() 142 if (ctx->API == API_OPENGL) { in install_vtxfmt() 164 if (ctx->API != API_OPENGLES2) { in install_vtxfmt() [all …]
|
/external/ImageMagick/coders/ |
D | wmf.c | 240 #define ERR(API) ((API)->err != wmf_E_None) argument 376 #define WmfDrawingWand (((wmf_magick_t*)((API)->device_data))->draw_wand) 398 static void lite_font_init (wmfAPI* API, wmfAPI_Options* options); 399 static void lite_font_map(wmfAPI* API,wmfFont* font); 400 static float lite_font_stringwidth(wmfAPI* API, wmfFont* font, char* str); 403 static void draw_fill_color_rgb(wmfAPI* API, const wmfRGB* rgb); 404 static void draw_stroke_color_rgb(wmfAPI* API, const wmfRGB* rgb); 405 static void draw_pattern_push(wmfAPI* API, unsigned long id, unsigned long columns, unsigne… 409 static void ipa_bmp_draw(wmfAPI * API, wmfBMP_Draw_t * bmp_draw); 410 static void ipa_bmp_free(wmfAPI * API, wmfBMP * bmp); [all …]
|
/external/eigen/doc/ |
D | B01_Experimental.dox | 9 …API is, to a large extent, stable. However, we wish to retain the freedom to make API incompatible… 11 Our goal is that for the 2.1 release (expected in July 2009) most of these parts become API-stable … 13 …API stability is a major concern for our users. That's why it's a priority for us to reach it, but… 17 \li be subject to an API incompatible change; 18 \li introduce API or ABI incompatible changes in your own code if you let them affect your API or A… 22 The following modules are considered entirely experimental, and we make no firm API stability guara… 37 The only classes subject to (even partial) API stability guarantee (meaning that you can safely con… 38 \li MatrixBase : partial API stability (see below) 39 \li Matrix : full API stability (except for experimental stuff inherited from MatrixBase) 40 \li Map : full API stability (except for experimental stuff inherited from MatrixBase) [all …]
|
D | A10_Eigen2SupportModes.dox | 8 Don't miss our page on \ref Eigen2ToEigen3 "API changes" between Eigen 2 and Eigen 3. 14 …y Eigen 3 header, you get back a large part of the Eigen 2 API, while keeping the Eigen 3 API and … 22 …API is inherently incompatible with the Eigen 3 API. This happens when the same identifier is used… 26 …upport stage 10". This mode enables maximum compatibility with the Eigen 2 API, with just a few ex… 27 …s mode forces you to add eigen2_ prefixes to the Eigen2 identifiers that conflict with Eigen 3 API. 28 …ainst Eigen 3 with \ref Stage30 "Eigen 2 support stage 30". This mode enables the full Eigen 3 API. 36 …port for the Eigen 2 API. As a result, it does not offer the full Eigen 3 API. Also, it doesn't of… 38 The part of the Eigen 3 API that is not present in this mode, is Eigen 3's Geometry module. Indeed,… 40 The parts of the API that are still not 100% Eigen 2 compatible in this mode are: 50 …API that is directly conflicting with Eigen 3 API. Instead, these bits of Eigen 2 API remain avail… [all …]
|
/external/llvm/test/tools/gold/X86/ |
D | emit-llvm.ll | 8 ; RUN: FileCheck --check-prefix=API %s < %T/../apifile.txt 82 ; API: f1 PREVAILING_DEF_IRONLY 83 ; API: f2 PREVAILING_DEF_IRONLY 84 ; API: f3 PREVAILING_DEF_IRONLY_EXP 85 ; API: f4 PREVAILING_DEF_IRONLY_EXP 86 ; API: f5 PREVAILING_DEF_IRONLY_EXP 87 ; API: f6 PREVAILING_DEF_IRONLY_EXP 88 ; API: f7 PREVAILING_DEF_IRONLY_EXP 89 ; API: f8 PREVAILING_DEF_IRONLY_EXP 90 ; API: g7 UNDEF [all …]
|
/external/deqp/doc/testspecs/GLES2/ |
D | functional.negative_api.txt | 19 Negative API tests 25 + Negative tests for all API functions capable of producing errors 27 - Buffer API 28 - Fragment API 29 - Shader API 30 - State API & Special Functions 31 - Texture API 32 - Vertex Array API 35 + Tests for API functions that cannot produce errors 39 Negative API test set goes through all GL commands that are capable of
|
/external/harfbuzz_ng/ |
D | TODO | 13 API issues: 16 - API to accept a list of languages? 25 API additions 34 - Add sanitize API (and a cached version, that saves result on blob user-data) 36 - BCP 47 language handling / API (language_matches?) 40 - Add query / enumeration API for aalt-like features? 44 - Add segmentation API 58 - ot-layout enumeration API (needs font)
|
D | NEWS | 26 - API changes: 46 - Also, two rather small API changes: 55 New API: 63 Deprecated API: 130 - New API: 156 - API changes: 188 - API changes: 217 - New API: 224 - API changes: 282 - New API to allow for retrieving finer-grained cluster [all …]
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/ |
D | modules.cfg | 108 # that its public API is subject to change if necessary). See 117 # See include/freetype/ftgzip.h for the API. 122 # See include/freetype/ftlzw.h for the API. 127 # See include/freetype/ftbzip2.h for the API. 152 # See include/freetype/ftbbox.h for the API. 157 # See include/freetype/ftbdf.h for the API. 163 # See include/freetype/ftbitmap.h for the API. 168 # See include/freetype/ftcid.h for the API. 173 # See include/freetype/ftfntfmt.h for the API. 178 # See include/freetype/freetype.h for the API. [all …]
|
/external/libgdx/ |
D | CHANGES | 5 - API Addition: GestureDetector#pinchStop() called when no longer pinching 6 - API Addition: Gdx.graphics.setUndecorated/setResizable API added to Graphics https://github.com/l… 7 - API Addition: Gdx.graphics.getGLVersion(), grab the GL version and implementation type. https://g… 8 - API Change: Lwjgl3WindowListener -> filesDropped(String[] files) adds drag'n drop support for the… 9 …Effect to make it easier to know when all the emitters are done, behaves the same as in the 2D API. 10 - API Change: renamed Lwjgl3WindowListener.windowIsClosing() to closeRequested() to better communic… 14 - API Change: moved shape builder logic out of MeshBuilder, see: https://github.com/libgdx/libgdx/p… 15 - API Change: Table reset now calls clearChildren, not clear. 33 - API Change: Override GwtApplication#createApplicationListener() to create your ApplicationListener 38 - API Change: Lwjgl3ApplicationConfiguration#setBackbufferConfig -> setBackBufferConfig [all …]
|
/external/icu/icu4j/tools/build/ |
D | README.txt | 9 supported API between versions of ICU4J. 15 generate a file listing information about the public API, including 17 private API, API marked @internal. The file is written as text, so it 36 on removals, changes, and additions to the API. It does this by 37 comparing the API information in the two API files. When new classes 38 are added, only the class is listed, not its entire API, and similarly 41 by showing the old and new versions of the API. 44 about inherited API. So for example, moving public API from a class 45 to a base class is reported as a deletion of API from the original 46 class, even though the effective API on the original class is [all …]
|
/external/minijail/ |
D | libminijail.c | 210 struct minijail API *minijail_new(void) in minijail_new() 215 void API minijail_change_uid(struct minijail *j, uid_t uid) in minijail_change_uid() 223 void API minijail_change_gid(struct minijail *j, gid_t gid) in minijail_change_gid() 231 void API minijail_set_supplementary_gids(struct minijail *j, size_t size, in minijail_set_supplementary_gids() 259 int API minijail_change_user(struct minijail *j, const char *user) in minijail_change_user() 293 int API minijail_change_group(struct minijail *j, const char *group) in minijail_change_group() 323 void API minijail_use_seccomp(struct minijail *j) in minijail_use_seccomp() 328 void API minijail_no_new_privs(struct minijail *j) in minijail_no_new_privs() 333 void API minijail_use_seccomp_filter(struct minijail *j) in minijail_use_seccomp_filter() 338 void API minijail_log_seccomp_filter_failures(struct minijail *j) in minijail_log_seccomp_filter_failures() [all …]
|
/external/mesa3d/src/gallium/state_trackers/egl/common/ |
D | egl_g3d_api.c | 896 drv->API.ChooseConfig = egl_g3d_choose_config; in egl_g3d_init_driver_api() 898 drv->API.CreateContext = egl_g3d_create_context; in egl_g3d_init_driver_api() 899 drv->API.DestroyContext = egl_g3d_destroy_context; in egl_g3d_init_driver_api() 900 drv->API.CreateWindowSurface = egl_g3d_create_window_surface; in egl_g3d_init_driver_api() 901 drv->API.CreatePixmapSurface = egl_g3d_create_pixmap_surface; in egl_g3d_init_driver_api() 902 drv->API.CreatePbufferSurface = egl_g3d_create_pbuffer_surface; in egl_g3d_init_driver_api() 903 drv->API.CreatePbufferFromClientBuffer = egl_g3d_create_pbuffer_from_client_buffer; in egl_g3d_init_driver_api() 904 drv->API.DestroySurface = egl_g3d_destroy_surface; in egl_g3d_init_driver_api() 905 drv->API.MakeCurrent = egl_g3d_make_current; in egl_g3d_init_driver_api() 906 drv->API.SwapBuffers = egl_g3d_swap_buffers; in egl_g3d_init_driver_api() [all …]
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.debug.txt | 25 + Reporting basic API errors 41 + Negative API tests for the extension itself 42 + Some API errors 59 Basic API error conditions are tested by calling the API in a manner that should 62 Other than the fetching of errors (where necessary) the API usage is identical 68 Message filtering tests use a partially randomized set of API calls. The 71 (unfiltered) state and the API calls are re-run. The messages from the second 75 Filtering tests are essentially run several times with the same set of API 78 Asynchronous message generation is tested by running the same set of API calls 80 comparing the generated messages. The set of API calls used is randomized.
|
/external/webrtc/talk/app/webrtc/java/ |
D | README | 1 This directory holds a Java implementation of the webrtc::PeerConnection API, as 3 implementation of the same API. 5 To build the Java API and related tests, build with 10 To use the Java API, start by looking at the public interface of 13 To understand the implementation of the API, see the native code in jni/.
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
D | d3d11.cpp | 39 #define API 11 macro 41 #if API >= 11 74 #if API >= 11 91 #if API >= 11 133 #if API >= 11 151 #if API >= 11 170 #if API < 11 223 #if API >= 11
|
/external/tlsdate/src/ |
D | routeup.c | 39 int API 72 int API 113 int API 139 void API 146 int API
|
D | proxy-polarssl.c | 263 int API proxy_polarssl_init(proxy_polarssl_ctx *ctx) in proxy_polarssl_init() 272 void API proxy_polarssl_set_bio(proxy_polarssl_ctx *ctx, in proxy_polarssl_set_bio() 285 int API proxy_polarssl_free(proxy_polarssl_ctx *ctx) in proxy_polarssl_free() 299 int API proxy_polarssl_set_scheme(proxy_polarssl_ctx *ctx, const char *scheme) in proxy_polarssl_set_scheme() 312 int API proxy_polarssl_set_host(proxy_polarssl_ctx *ctx, const char *host) in proxy_polarssl_set_host() 320 void API proxy_polarssl_set_port(proxy_polarssl_ctx *ctx, uint16_t port) in proxy_polarssl_set_port() 325 int API proxy_polarssl_recv(void *ctx, unsigned char *data, size_t len) in proxy_polarssl_recv() 344 int API proxy_polarssl_send(void *ctx, const unsigned char *data, size_t len) in proxy_polarssl_send()
|