Lines Matching refs:to
7 egl_display_t::initialize() calls initEglTraceLevel() to figure out whether tracing should be
10 calls GLTrace_start() to start the trace server.
13 specific gl_hooks structure to point to the trace implementation. From this point on, every
14 GLES call is redirected to the trace implementation.
18 While the application is running, all its GLES calls are directly routed to their corresponding
27 to explore if a more graceful method of stopping the application, or detaching tracing from the
33 In order to allow tracing of an already running application, we allow DdmServer to enable
34 OpenGL tracing. In such a case, the application already has its GL hooks set up to point to the
35 real GL implementation, and we need to switch them to point to the trace implementation.
42 - switch the gl hooks to point to the trace implementation.
43 - call trace eglMakeCurrent to indicate that there is now a new context that is current.
45 This switches the hooks to point to the trace implementation only for the current context.
48 The GLTrace version of eglMakeCurrent now has to be updated to allow switching to a context
50 switching to.
64 EGL/eglApi.cpp to initialize the trace library, and to inform the library of EGL calls.
75 // transport the protobuf to the host
79 This typically amounts to copying the data corresponding to input or output pointers.