HomeSort by relevance Sort by last modified time
    Searched refs:Driver (Results 276 - 300 of 403) sorted by null

<<11121314151617

  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 28 * General device driver functions for Xlib driver.
366 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0,
420 ctx->Driver.UnmapBuffer(ctx, unpack->BufferObj);
500 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0,
553 ctx->Driver.UnmapBuffer(ctx, unpack->BufferObj);
641 * Every driver should implement a GetString function in order to
682 * Called when the driver should update its state, based on the new_state
691 * modules. The X11 driver has no internal GL-dependent state.
746 * X Resize/StructureNotify events since the X driver has no event loop
    [all...]
  /external/mesa3d/src/mesa/main/
texenv.c 521 /* Tell device driver about the new texture environment */
522 if (ctx->Driver.TexEnv) {
523 (*ctx->Driver.TexEnv)( ctx, target, pname, param );
850 if (ctx->Driver.TexEnv) {
851 (*ctx->Driver.TexEnv)( ctx, 0, pname, param );
uniform_query.cpp 457 * Propagate some values from uniform backing storage to driver storage
459 * Values propagated from uniform backing storage to driver storage
461 * driver applied. This function is most often called by the
465 * \param uni Uniform whose data is to be propagated to driver storage
482 /* Store the data in the driver's requested type in the driver's storage
816 if (ctx->Driver.SamplerUniformChange)
817 ctx->Driver.SamplerUniformChange(ctx, prog->Target, prog);
  /external/mesa3d/src/mesa/state_tracker/
st_context.c 74 * Called via ctx->Driver.UpdateState()
236 * driver prefers DP4 or MUL/MAD for vertex transformation.
266 st->ctx->Driver.DeleteTexture(st->ctx, st->default_texture);
  /external/mesa3d/src/mesa/swrast/
s_depth.c 556 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
644 ctx->Driver.UnmapRenderbuffer(ctx, rb);
681 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
754 ctx->Driver.UnmapRenderbuffer(ctx, rb);
s_stencil.c 580 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
647 ctx->Driver.UnmapRenderbuffer(ctx, rb);
  /external/mesa3d/src/mesa/tnl/
t_context.h 488 /* Driver may request additional render passes by returning GL_TRUE
505 /* Driver interface.
507 struct tnl_device_driver Driver;
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
SDL_syscdrom.c 154 #pragma mark -- Driver Functions --
  /libcore/luni/src/test/java/tests/java/sql/
StressTest.java 21 import java.sql.Driver;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 18 from .pgen2 import driver, literals, token, tokenize, parse, grammar namespace
50 self.grammar = driver.load_grammar(grammar_file)
54 self.driver = driver.Driver(self.grammar, convert=pattern_convert)
60 root = self.driver.parse_tokens(tokens, debug=debug)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 8 """Parser driver.
16 __all__ = ["Driver", "load_grammar"]
29 class Driver(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 18 from .pgen2 import driver, literals, token, tokenize, parse, grammar namespace
50 self.grammar = driver.load_grammar(grammar_file)
54 self.driver = driver.Driver(self.grammar, convert=pattern_convert)
60 root = self.driver.parse_tokens(tokens, debug=debug)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 8 """Parser driver.
16 __all__ = ["Driver", "load_grammar"]
29 class Driver(object):
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglapi.c 35 * appropriate device driver handle, then jump though the driver's
56 * is generated and the driver function is not called. An
57 * uninitialized EGLDisplay has no driver associated with it. When
66 * checked before calling the driver function. Other than the
174 return disp->Driver;
306 * Here we load/initialize the actual hardware driver.
343 _EGLDriver *drv = disp->Driver;
346 /* do not reset disp->Driver */
473 drv = disp->Driver;
    [all...]
  /external/mesa3d/src/egl/main/
eglapi.c 35 * appropriate device driver handle, then jump though the driver's
56 * is generated and the driver function is not called. An
57 * uninitialized EGLDisplay has no driver associated with it. When
66 * checked before calling the driver function. Other than the
174 return disp->Driver;
306 * Here we load/initialize the actual hardware driver.
343 _EGLDriver *drv = disp->Driver;
346 /* do not reset disp->Driver */
473 drv = disp->Driver;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
test.py 34 from webkitpy.layout_tests.port import DeviceFailure, Driver, DriverOutput, Port
427 # the mock_drt Driver. We return something, but make sure it's useless.
561 class TestDriver(Driver):
562 """Test/Dummy implementation of the driver interface."""
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_tcl.c 5 initial release of the Radeon 8500 driver under the XFree86 license.
119 * the card or driver or kernel module that is causing the behaviour.
525 tnl->Driver.NotifyMaterialChange =
546 tnl->Driver.NotifyMaterialChange = r200UpdateMaterial;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
uniform_query.cpp 457 * Propagate some values from uniform backing storage to driver storage
459 * Values propagated from uniform backing storage to driver storage
461 * driver applied. This function is most often called by the
465 * \param uni Uniform whose data is to be propagated to driver storage
482 /* Store the data in the driver's requested type in the driver's storage
816 if (ctx->Driver.SamplerUniformChange)
817 ctx->Driver.SamplerUniformChange(ctx, prog->Target, prog);
ff_fragment_shader.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_stencil.c 580 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
647 ctx->Driver.UnmapRenderbuffer(ctx, rb);
  /external/clang/lib/Driver/
Tools.h 13 #include "clang/Driver/Tool.h"
14 #include "clang/Driver/Types.h"
15 #include "clang/Driver/Util.h"
23 namespace driver { namespace in namespace:clang
24 class Driver;
45 const Driver &D,
615 } // end namespace driver
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tcl.c 5 initial release of the Radeon 8500 driver under the XFree86 license.
119 * the card or driver or kernel module that is causing the behaviour.
525 tnl->Driver.NotifyMaterialChange =
546 tnl->Driver.NotifyMaterialChange = r200UpdateMaterial;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
vdpau_private.h 52 #define INFORMATION G3DVL VDPAU Driver Shared Library version VER_MAJOR.VER_MINOR
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_context.c 4 develop this 3D driver.
55 * Mesa's Driver Functions
156 /* Initialize swrast, tnl driver tables: */
161 tnl->Driver.RunPipeline = _tnl_run_pipeline;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_pixeltransfer.c 151 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);

Completed in 1936 milliseconds

<<11121314151617