HomeSort by relevance Sort by last modified time
    Searched refs:Driver (Results 151 - 175 of 282) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/mesa/main/
texstorage.c 173 if (!ctx->Driver.AllocTextureStorage(ctx, texObj, levels,
372 sizeOK = ctx->Driver.TestProxyTexImage(ctx, proxyTarget, 0,
teximage.c 599 * Called via ctx->Driver.NewTextureImage() unless overriden by a device
600 * driver.
615 * This function is a fallback called via ctx->Driver.DeleteTextureImage().
625 /* Free texImage->Data and/or any other driver-specific texture
628 ASSERT(ctx->Driver.FreeTextureImageBuffer);
629 ctx->Driver.FreeTextureImageBuffer( ctx, texImage );
826 texImage = ctx->Driver.NewTextureImage(ctx);
896 texImage = ctx->Driver.NewTextureImage(ctx);
    [all...]
attrib.c 720 if (ctx->Driver.TexGen) {
721 ctx->Driver.TexGen(ctx, GL_S, GL_EYE_PLANE, unit->GenS.EyePlane);
722 ctx->Driver.TexGen(ctx, GL_T, GL_EYE_PLANE, unit->GenT.EyePlane);
723 ctx->Driver.TexGen(ctx, GL_R, GL_EYE_PLANE, unit->GenR.EyePlane);
724 ctx->Driver.TexGen(ctx, GL_Q, GL_EYE_PLANE, unit->GenQ.EyePlane);
834 * of device driver functions to update device driver state.
    [all...]
nvprogram.c 632 vprog = gl_vertex_program(ctx->Driver.NewProgram(ctx, target, id));
651 fprog = gl_fragment_program(ctx->Driver.NewProgram(ctx, target, id));
664 fprog = gl_fragment_program(ctx->Driver.NewProgram(ctx, target, id));
shaderapi.c 267 sh = ctx->Driver.NewShader(ctx, name, type);
282 shProg = ctx->Driver.NewShaderProgram(ctx, name);
938 if (ctx->Driver.UseProgram)
939 ctx->Driver.UseProgram(ctx, shProg);
    [all...]
api_validate.c 71 map = ctx->Driver.MapBufferRange(ctx, 0, elementBuf->Size,
95 ctx->Driver.UnmapBuffer(ctx, elementBuf);
  /external/vogar/src/vogar/
Driver.java 38 public final class Driver {
41 public Driver(Run run) {
Run.java 102 public final Driver driver; field in class:Run
197 this.driver = new Driver(this);
  /external/clang/
clang-tblgen-rules.mk 232 LOCAL_GENERATED_SOURCES += $(generated_sources)/include/clang/Driver/Options.inc
233 $(generated_sources)/include/clang/Driver/Options.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
234 $(generated_sources)/include/clang/Driver/Options.inc: $(CLANG_ROOT_PATH)/include/clang/Driver/Options.td $(LLVM_ROOT_PATH)/include/llvm/Option/OptParser.td $(CLANG_ROOT_PATH)/include/clang/Driver/CC1Options.td \
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_vtbl.c 708 * places within the driver.
731 * many places within the driver.
830 ctx->Driver.Enable(ctx, GL_DEPTH_TEST, ctx->Depth.Test);
831 ctx->Driver.Enable(ctx, GL_STENCIL_TEST,
843 ctx->Driver.Scissor(ctx, ctx->Scissor.X, ctx->Scissor.Y,
846 ctx->Driver.DepthRange(ctx, ctx->Viewport.Near, ctx->Viewport.Far);
851 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
i915_vtbl.c 707 * places within the driver.
731 * many places within the driver.
800 ctx->Driver.Enable(ctx, GL_DEPTH_TEST, ctx->Depth.Test);
801 ctx->Driver.Enable(ctx, GL_STENCIL_TEST, ctx->Stencil.Enabled);
814 ctx->Driver.Scissor(ctx, ctx->Scissor.X, ctx->Scissor.Y,
816 ctx->Driver.DepthRange(ctx, ctx->Viewport.Near, ctx->Viewport.Far);
821 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
  /external/jetty/src/java/org/eclipse/jetty/server/session/
JDBCSessionIdManager.java 26 import java.sql.Driver;
68 protected Driver _driver;
252 * Configure jdbc connection information via a jdbc Driver
264 * Configure jdbc connection information via a jdbc Driver
269 public void setDriverInfo (Driver driverClass, String connectionUrl)
551 * Get a connection from the driver or datasource.
    [all...]
  /external/llvm/test/Bindings/OCaml/
target.ml 109 (*===-- Driver ------------------------------------------------------------===*)
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tcl.c 122 * the card or driver or kernel module that is causing the behaviour.
466 tnl->Driver.NotifyMaterialChange =
500 tnl->Driver.NotifyMaterialChange = radeonUpdateMaterial;
  /external/autotest/site_utils/suite_scheduler/
driver.py 21 class Driver(object):
24 @var EVENT_CLASSES: list of the event classes Driver supports.
43 @param is_sanity: Set to True if the driver is created for sanity check.
  /external/clang/lib/Driver/
Compilation.cpp 10 #include "clang/Driver/Compilation.h"
11 #include "clang/Driver/Action.h"
12 #include "clang/Driver/Driver.h"
13 #include "clang/Driver/DriverDiagnostic.h"
14 #include "clang/Driver/Options.h"
15 #include "clang/Driver/ToolChain.h"
21 using namespace clang::driver;
25 Compilation::Compilation(const Driver &D, const ToolChain &_DefaultToolChain,
Job.cpp 11 #include "clang/Driver/Driver.h"
12 #include "clang/Driver/DriverDiagnostic.h"
13 #include "clang/Driver/Job.h"
14 #include "clang/Driver/Tool.h"
15 #include "clang/Driver/ToolChain.h"
24 using namespace clang::driver;
293 const Driver &D = getCreator().getToolChain().getDriver();
MinGWToolChain.cpp 11 #include "clang/Driver/Driver.h"
12 #include "clang/Driver/Options.h"
18 using namespace clang::driver;
19 using namespace clang::driver::toolchains;
65 MinGW::MinGW(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
Tools.h 14 #include "clang/Driver/Tool.h"
15 #include "clang/Driver/Types.h"
16 #include "clang/Driver/Util.h"
25 namespace driver { namespace in namespace:clang
27 class Driver;
57 const Driver &D, const llvm::opt::ArgList &Args,
677 VersionTuple getMSVCVersion(const Driver *D, const llvm::Triple &Triple,
767 FloatABI getPPCFloatABI(const Driver &D, const llvm::opt::ArgList &Args);
    [all...]
  /external/mesa3d/src/glsl/
main.cpp 60 ctx->Driver.NewShader = _mesa_new_shader;
test_optpass.cpp 202 ctx->Driver.NewShader = _mesa_new_shader;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_shader.cpp 99 ctx->Driver.NewProgram(ctx, targets[stage], shader->base.Name);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex.c 64 /* Because the driver uses AllocTextureImageBuffer() internally, it may end
68 ctx->Driver.FreeTextureImageBuffer(ctx, image);
114 * Called via ctx->Driver.AllocTextureStorage()
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 29 * Note on thread safety: this driver is thread safe. All
92 /*** Private Device Driver Functions ***/
705 /* Initialize device driver function table */
779 tnl->Driver.RunPipeline = _tnl_run_pipeline;
781 ctx->Driver.MapRenderbuffer = osmesa_MapRenderbuffer;
782 ctx->Driver.UnmapRenderbuffer = osmesa_UnmapRenderbuffer;
784 ctx->Driver.GenerateMipmap = _mesa_generate_mipmap;
    [all...]
  /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...]

Completed in 435 milliseconds

1 2 3 4 5 67 8 91011>>