HomeSort by relevance Sort by last modified time
    Searched refs:Driver (Results 176 - 200 of 428) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texobj.c 70 * Called via ctx->Driver.NewTextureObject, unless overridden by a device
71 * driver.
177 if (ctx->Driver.TexParameter) {
180 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_S, fparam_wrap);
181 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_T, fparam_wrap);
182 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_R, fparam_wrap);
183 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_MIN_FILTER, fparam_filter);
192 * Called via ctx->Driver.DeleteTexture() if not overriden by a driver.
212 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i])
    [all...]
context.c 173 if (ctx->Driver.Flush) {
174 ctx->Driver.Flush(ctx);
890 * Note that the driver needs to pass in its dd_function_table here since
908 * \param driverFunctions table of device driver functions for this context
910 * \param driverContext pointer to driver-specific context data
937 /* Plug in driver functions and context pointer here.
939 * we'll call ctx->Driver.NewTextureObject() to create the default
942 ctx->Driver = *driverFunctions;
    [all...]
arbprogram.c 114 newProg = ctx->Driver.NewProgram(ctx, target, id);
153 if (ctx->Driver.BindProgram)
154 ctx->Driver.BindProgram(ctx, target, newProg);
401 /* finally, give the program to the driver for translation/checking */
402 if (!ctx->Driver.ProgramStringNotify(ctx, target, base)) {
404 "glProgramStringARB(rejected by driver");
801 * XXX we may not really need a driver callback here.
811 else if (ctx->Driver.IsProgramNative) {
812 /* ask the driver */
813 *params = ctx->Driver.IsProgramNative( ctx, target, prog )
    [all...]
fbobject.c 307 if (ctx->Driver.FinishRenderTexture) {
308 /* tell driver that we're done rendering to this texture. */
309 ctx->Driver.FinishRenderTexture(ctx, att);
338 if (ctx->Driver.FinishRenderTexture)
339 ctx->Driver.FinishRenderTexture(ctx, att);
343 if (ctx->Driver.FinishRenderTexture && att->Texture)
344 ctx->Driver.FinishRenderTexture(ctx, att);
358 ctx->Driver.RenderTexture(ctx, fb, att);
384 * Fallback for ctx->Driver.FramebufferRenderbuffer()
419 * Fallback for ctx->Driver.ValidateFramebuffer(
    [all...]
shaderobj.c 78 ctx->Driver.DeleteShader(ctx, old);
102 * Called via ctx->Driver.NewShader()
122 * Called via ctx->Driver.DeleteShader().
220 ctx->Driver.DeleteShaderProgram(ctx, old);
260 * Called via ctx->Driver.NewShaderProgram()
354 ctx->Driver.DeleteShader(ctx, shProg->_LinkedShaders[sh]);
363 * Called via ctx->Driver.DeleteShaderProgram().
425 _mesa_init_shader_object_functions(struct dd_function_table *driver)
427 driver->NewShader = _mesa_new_shader;
428 driver->DeleteShader = _mesa_delete_shader
    [all...]
  /external/mesa3d/src/mesa/main/
texobj.c 70 * Called via ctx->Driver.NewTextureObject, unless overridden by a device
71 * driver.
177 if (ctx->Driver.TexParameter) {
180 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_S, fparam_wrap);
181 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_T, fparam_wrap);
182 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_WRAP_R, fparam_wrap);
183 ctx->Driver.TexParameter(ctx, target, obj, GL_TEXTURE_MIN_FILTER, fparam_filter);
192 * Called via ctx->Driver.DeleteTexture() if not overriden by a driver.
212 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i])
    [all...]
context.c 173 if (ctx->Driver.Flush) {
174 ctx->Driver.Flush(ctx);
890 * Note that the driver needs to pass in its dd_function_table here since
908 * \param driverFunctions table of device driver functions for this context
910 * \param driverContext pointer to driver-specific context data
937 /* Plug in driver functions and context pointer here.
939 * we'll call ctx->Driver.NewTextureObject() to create the default
942 ctx->Driver = *driverFunctions;
    [all...]
arbprogram.c 114 newProg = ctx->Driver.NewProgram(ctx, target, id);
153 if (ctx->Driver.BindProgram)
154 ctx->Driver.BindProgram(ctx, target, newProg);
401 /* finally, give the program to the driver for translation/checking */
402 if (!ctx->Driver.ProgramStringNotify(ctx, target, base)) {
404 "glProgramStringARB(rejected by driver");
801 * XXX we may not really need a driver callback here.
811 else if (ctx->Driver.IsProgramNative) {
812 /* ask the driver */
813 *params = ctx->Driver.IsProgramNative( ctx, target, prog )
    [all...]
fbobject.c 307 if (ctx->Driver.FinishRenderTexture) {
308 /* tell driver that we're done rendering to this texture. */
309 ctx->Driver.FinishRenderTexture(ctx, att);
338 if (ctx->Driver.FinishRenderTexture)
339 ctx->Driver.FinishRenderTexture(ctx, att);
343 if (ctx->Driver.FinishRenderTexture && att->Texture)
344 ctx->Driver.FinishRenderTexture(ctx, att);
358 ctx->Driver.RenderTexture(ctx, fb, att);
384 * Fallback for ctx->Driver.FramebufferRenderbuffer()
419 * Fallback for ctx->Driver.ValidateFramebuffer(
    [all...]
shaderobj.c 78 ctx->Driver.DeleteShader(ctx, old);
102 * Called via ctx->Driver.NewShader()
122 * Called via ctx->Driver.DeleteShader().
220 ctx->Driver.DeleteShaderProgram(ctx, old);
260 * Called via ctx->Driver.NewShaderProgram()
354 ctx->Driver.DeleteShader(ctx, shProg->_LinkedShaders[sh]);
363 * Called via ctx->Driver.DeleteShaderProgram().
425 _mesa_init_shader_object_functions(struct dd_function_table *driver)
427 driver->NewShader = _mesa_new_shader;
428 driver->DeleteShader = _mesa_delete_shader
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_state_init.c 5 initial release of the Radeon 8500 driver under the XFree86 license.
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state_init.c 5 initial release of the Radeon 8500 driver under the XFree86 license.
    [all...]
  /external/chromium_org/content/browser/resources/gpu/
browser_bridge_tests.js 206 description: 'Driver vendor',
210 description: 'Driver version',
214 description: 'Driver date',
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_drawpix.c 67 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
89 ctx->Driver.UnmapRenderbuffer(ctx, rb);
114 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
137 ctx->Driver.UnmapRenderbuffer(ctx, rb);
164 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
183 ctx->Driver.UnmapRenderbuffer(ctx, rb);
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 67 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
89 ctx->Driver.UnmapRenderbuffer(ctx, rb);
114 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
137 ctx->Driver.UnmapRenderbuffer(ctx, rb);
164 ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height,
183 ctx->Driver.UnmapRenderbuffer(ctx, rb);
  /external/chromium_org/components/translate/core/browser/
language_state_unittest.cc 89 scoped_ptr<MockTranslateDriver> driver(
91 LanguageState language_state(driver.get());
113 TEST(LanguageStateTest, Driver) {
115 scoped_ptr<MockTranslateDriver> driver(
117 LanguageState language_state(driver.get());
121 EXPECT_FALSE(driver->on_translate_enabled_changed_called());
124 EXPECT_TRUE(driver->on_translate_enabled_changed_called());
126 driver->Reset();
129 EXPECT_TRUE(driver->on_translate_enabled_changed_called());
132 driver->Reset()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldisplay.h 130 _EGLDriver *Driver; /**< Matched driver of the display */
133 /* options that affect how the driver initializes the display */
135 EGLBoolean TestOnly; /**< Driver should not set fields when true */
136 EGLBoolean UseFallback; /**< Use fallback driver (sw or less features) */
139 /* these fields are set by the driver during init */
140 void *DriverData; /**< Driver private data */
eglmisc.c 71 * the driver's Extensions string.
160 dpy->Driver->Name);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_ioctl.c 270 rmesa->radeon.glCtx->Driver.NeedFlush |= FLUSH_STORED_VERTICES;
416 ctx->Driver.Clear = radeonClear;
417 ctx->Driver.Finish = radeonFinish;
418 ctx->Driver.Flush = radeonFlush;
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_draw.c 284 ctx->Driver.MapBufferRange(ctx, 0, inputs[i]->BufferObj->Size,
354 ptr = ctx->Driver.MapBufferRange(ctx, (GLsizeiptr) ib->ptr,
405 ctx->Driver.UnmapBuffer(ctx, bo[i]);
428 * module. In a regular swtnl driver, this can be plugged straight
429 * into the vbo->Driver.DrawPrims() callback.
524 TNL_CONTEXT(ctx)->Driver.RunPipeline(ctx);
  /external/mesa3d/src/egl/main/
egldisplay.h 130 _EGLDriver *Driver; /**< Matched driver of the display */
133 /* options that affect how the driver initializes the display */
135 EGLBoolean TestOnly; /**< Driver should not set fields when true */
136 EGLBoolean UseFallback; /**< Use fallback driver (sw or less features) */
139 /* these fields are set by the driver during init */
140 void *DriverData; /**< Driver private data */
eglmisc.c 71 * the driver's Extensions string.
160 dpy->Driver->Name);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_ioctl.c 270 rmesa->radeon.glCtx->Driver.NeedFlush |= FLUSH_STORED_VERTICES;
416 ctx->Driver.Clear = radeonClear;
417 ctx->Driver.Finish = radeonFinish;
418 ctx->Driver.Flush = radeonFlush;
  /external/mesa3d/src/mesa/tnl/
t_draw.c 284 ctx->Driver.MapBufferRange(ctx, 0, inputs[i]->BufferObj->Size,
354 ptr = ctx->Driver.MapBufferRange(ctx, (GLsizeiptr) ib->ptr,
405 ctx->Driver.UnmapBuffer(ctx, bo[i]);
428 * module. In a regular swtnl driver, this can be plugged straight
429 * into the vbo->Driver.DrawPrims() callback.
524 TNL_CONTEXT(ctx)->Driver.RunPipeline(ctx);
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_save_api.c 198 vertex_store->bufferobj = ctx->Driver.NewBufferObject(ctx,
203 !ctx->Driver.BufferData(ctx,
248 (GLfloat *) ctx->Driver.MapBufferRange(ctx, 0,
267 ctx->Driver.UnmapBuffer(ctx, vertex_store->bufferobj);
824 ctx->Driver.SaveNeedFlush = 0;
895 * ctx->Driver.CurrentSavePrimitive is already taken care of.
923 ctx->Driver.SaveNeedFlush = 1;
935 ctx->Driver.CurrentSavePrimitive = PRIM_OUTSIDE_BEGIN_END;
1164 curPrim = ctx->Driver.CurrentSavePrimitive;
    [all...]

Completed in 576 milliseconds

1 2 3 4 5 6 78 91011>>