HomeSort by relevance Sort by last modified time
    Searched full:ctx (Results 1 - 25 of 4417) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_state.c 36 nouveau_alpha_func(struct gl_context *ctx, GLenum func, GLfloat ref)
38 context_dirty(ctx, ALPHA_FUNC);
42 nouveau_blend_color(struct gl_context *ctx, const GLfloat color[4])
44 context_dirty(ctx, BLEND_COLOR);
48 nouveau_blend_equation_separate(struct gl_context *ctx, GLenum modeRGB, GLenum modeA)
50 context_dirty(ctx, BLEND_EQUATION);
54 nouveau_blend_func_separate(struct gl_context *ctx, GLenum sfactorRGB,
57 context_dirty(ctx, BLEND_FUNC);
61 nouveau_clip_plane(struct gl_context *ctx, GLenum plane, const GLfloat *equation)
63 context_dirty_i(ctx, CLIP_PLANE, plane - GL_CLIP_PLANE0)
    [all...]
nv10_driver.h 41 nv10_use_viewport_zclear(struct gl_context *ctx);
44 nv10_transform_depth(struct gl_context *ctx, float z);
48 nv10_vbo_init(struct gl_context *ctx);
51 nv10_vbo_destroy(struct gl_context *ctx);
54 nv10_swtnl_init(struct gl_context *ctx);
57 nv10_swtnl_destroy(struct gl_context *ctx);
61 nv10_emit_framebuffer(struct gl_context *ctx, int emit);
64 nv10_emit_render_mode(struct gl_context *ctx, int emit);
67 nv10_emit_scissor(struct gl_context *ctx, int emit);
70 nv10_emit_viewport(struct gl_context *ctx, int emit)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_state.c 36 nouveau_alpha_func(struct gl_context *ctx, GLenum func, GLfloat ref)
38 context_dirty(ctx, ALPHA_FUNC);
42 nouveau_blend_color(struct gl_context *ctx, const GLfloat color[4])
44 context_dirty(ctx, BLEND_COLOR);
48 nouveau_blend_equation_separate(struct gl_context *ctx, GLenum modeRGB, GLenum modeA)
50 context_dirty(ctx, BLEND_EQUATION);
54 nouveau_blend_func_separate(struct gl_context *ctx, GLenum sfactorRGB,
57 context_dirty(ctx, BLEND_FUNC);
61 nouveau_clip_plane(struct gl_context *ctx, GLenum plane, const GLfloat *equation)
63 context_dirty_i(ctx, CLIP_PLANE, plane - GL_CLIP_PLANE0)
    [all...]
nv10_driver.h 41 nv10_use_viewport_zclear(struct gl_context *ctx);
44 nv10_transform_depth(struct gl_context *ctx, float z);
48 nv10_vbo_init(struct gl_context *ctx);
51 nv10_vbo_destroy(struct gl_context *ctx);
54 nv10_swtnl_init(struct gl_context *ctx);
57 nv10_swtnl_destroy(struct gl_context *ctx);
61 nv10_emit_framebuffer(struct gl_context *ctx, int emit);
64 nv10_emit_render_mode(struct gl_context *ctx, int emit);
67 nv10_emit_scissor(struct gl_context *ctx, int emit);
70 nv10_emit_viewport(struct gl_context *ctx, int emit)
    [all...]
  /external/e2fsprogs/e2fsck/
e2fsck.c 54 errcode_t e2fsck_reset_context(e2fsck_t ctx)
58 ctx->flags &= E2F_RESET_FLAGS;
59 ctx->lost_and_found = 0;
60 ctx->bad_lost_and_found = 0;
61 if (ctx->inode_used_map) {
62 ext2fs_free_inode_bitmap(ctx->inode_used_map);
63 ctx->inode_used_map = 0;
65 if (ctx->inode_dir_map) {
66 ext2fs_free_inode_bitmap(ctx->inode_dir_map);
67 ctx->inode_dir_map = 0
    [all...]
  /external/chromium/chrome/browser/resources/shared/css/
tree.css.js 8 var ctx = document.getCSSCanvasContext('2d', 'tree-triangle', a + 1, a2 + 2); variable
10 ctx.fillStyle = '#000';
11 ctx.translate(.5, .5);
13 ctx.beginPath();
14 ctx.moveTo(0, 0);
15 ctx.lineTo(0, 1);
16 ctx.lineTo(a2, 1 + a2);
17 ctx.lineTo(a, 1);
18 ctx.lineTo(a, 0);
19 ctx.closePath()
    [all...]
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl_client_proc.h 12 typedef GLint (renderControl_APIENTRY *rcGetRendererVersion_client_proc_t) (void * ctx);
13 typedef EGLint (renderControl_APIENTRY *rcGetEGLVersion_client_proc_t) (void * ctx, EGLint*, EGLint*);
14 typedef EGLint (renderControl_APIENTRY *rcQueryEGLString_client_proc_t) (void * ctx, EGLenum, void*, EGLint);
15 typedef EGLint (renderControl_APIENTRY *rcGetGLString_client_proc_t) (void * ctx, EGLenum, void*, EGLint);
16 typedef EGLint (renderControl_APIENTRY *rcGetNumConfigs_client_proc_t) (void * ctx, uint32_t*);
17 typedef EGLint (renderControl_APIENTRY *rcGetConfigs_client_proc_t) (void * ctx, uint32_t, GLuint*);
18 typedef EGLint (renderControl_APIENTRY *rcChooseConfig_client_proc_t) (void * ctx, EGLint*, uint32_t, uint32_t*, uint32_t);
19 typedef EGLint (renderControl_APIENTRY *rcGetFBParam_client_proc_t) (void * ctx, EGLint);
20 typedef uint32_t (renderControl_APIENTRY *rcCreateContext_client_proc_t) (void * ctx, uint32_t, uint32_t, uint32_t);
21 typedef void (renderControl_APIENTRY *rcDestroyContext_client_proc_t) (void * ctx, uint32_t)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pixelstore.c 43 GET_CURRENT_CONTEXT(ctx);
44 ASSERT_OUTSIDE_BEGIN_END(ctx);
48 if (!_mesa_is_desktop_gl(ctx))
50 if (param == (GLint)ctx->Pack.SwapBytes)
52 FLUSH_VERTICES(ctx, _NEW_PACKUNPACK);
53 ctx->Pack.SwapBytes = param ? GL_TRUE : GL_FALSE;
56 if (!_mesa_is_desktop_gl(ctx))
58 if (param == (GLint)ctx->Pack.LsbFirst)
60 FLUSH_VERTICES(ctx, _NEW_PACKUNPACK);
61 ctx->Pack.LsbFirst = param ? GL_TRUE : GL_FALSE
    [all...]
enable.c 46 if (!ctx->Extensions.EXTNAME) { \
55 client_state(struct gl_context *ctx, GLenum cap, GLboolean state)
57 struct gl_array_object *arrayObj = ctx->Array.ArrayObj;
79 var = &arrayObj->VertexAttrib[VERT_ATTRIB_TEX(ctx->Array.ActiveTexture)].Enabled;
80 flag = VERT_BIT_TEX(ctx->Array.ActiveTexture);
131 if (!ctx->Extensions.NV_primitive_restart) {
134 var = &ctx->Array.PrimitiveRestart;
145 FLUSH_VERTICES(ctx, _NEW_ARRAY);
147 _ae_invalidate_state(ctx, _NEW_ARRAY);
158 if (ctx->Driver.Enable)
    [all...]
pixel.c 53 GET_CURRENT_CONTEXT(ctx);
55 ASSERT_OUTSIDE_BEGIN_END(ctx);
57 if (ctx->Pixel.ZoomX == xfactor &&
58 ctx->Pixel.ZoomY == yfactor)
61 FLUSH_VERTICES(ctx, _NEW_PIXEL);
62 ctx->Pixel.ZoomX = xfactor;
63 ctx->Pixel.ZoomY = yfactor;
76 get_pixelmap(struct gl_context *ctx, GLenum map)
80 return &ctx->PixelMaps.ItoI;
82 return &ctx->PixelMaps.StoS
    [all...]
  /external/mesa3d/src/mesa/main/
pixelstore.c 43 GET_CURRENT_CONTEXT(ctx);
44 ASSERT_OUTSIDE_BEGIN_END(ctx);
48 if (!_mesa_is_desktop_gl(ctx))
50 if (param == (GLint)ctx->Pack.SwapBytes)
52 FLUSH_VERTICES(ctx, _NEW_PACKUNPACK);
53 ctx->Pack.SwapBytes = param ? GL_TRUE : GL_FALSE;
56 if (!_mesa_is_desktop_gl(ctx))
58 if (param == (GLint)ctx->Pack.LsbFirst)
60 FLUSH_VERTICES(ctx, _NEW_PACKUNPACK);
61 ctx->Pack.LsbFirst = param ? GL_TRUE : GL_FALSE
    [all...]
enable.c 46 if (!ctx->Extensions.EXTNAME) { \
55 client_state(struct gl_context *ctx, GLenum cap, GLboolean state)
57 struct gl_array_object *arrayObj = ctx->Array.ArrayObj;
79 var = &arrayObj->VertexAttrib[VERT_ATTRIB_TEX(ctx->Array.ActiveTexture)].Enabled;
80 flag = VERT_BIT_TEX(ctx->Array.ActiveTexture);
131 if (!ctx->Extensions.NV_primitive_restart) {
134 var = &ctx->Array.PrimitiveRestart;
145 FLUSH_VERTICES(ctx, _NEW_ARRAY);
147 _ae_invalidate_state(ctx, _NEW_ARRAY);
158 if (ctx->Driver.Enable)
    [all...]
pixel.c 53 GET_CURRENT_CONTEXT(ctx);
55 ASSERT_OUTSIDE_BEGIN_END(ctx);
57 if (ctx->Pixel.ZoomX == xfactor &&
58 ctx->Pixel.ZoomY == yfactor)
61 FLUSH_VERTICES(ctx, _NEW_PIXEL);
62 ctx->Pixel.ZoomX = xfactor;
63 ctx->Pixel.ZoomY = yfactor;
76 get_pixelmap(struct gl_context *ctx, GLenum map)
80 return &ctx->PixelMaps.ItoI;
82 return &ctx->PixelMaps.StoS
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
driverfuncs.c 216 * Call the ctx->Driver.* state functions with current values to initialize
221 _mesa_init_driver_state(struct gl_context *ctx)
223 ctx->Driver.AlphaFunc(ctx, ctx->Color.AlphaFunc, ctx->Color.AlphaRef);
225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
227 ctx->Driver.BlendEquationSeparate(ctx
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 216 * Call the ctx->Driver.* state functions with current values to initialize
221 _mesa_init_driver_state(struct gl_context *ctx)
223 ctx->Driver.AlphaFunc(ctx, ctx->Color.AlphaFunc, ctx->Color.AlphaRef);
225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
227 ctx->Driver.BlendEquationSeparate(ctx
    [all...]
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css.js 7 var ctx = document.getCSSCanvasContext('2d', 'drop-down-arrow', 9, 4);
8 ctx.fillStyle = '#000';
9 ctx.translate(1.5, .5);
10 ctx.beginPath();
11 ctx.moveTo(0, 0);
12 ctx.lineTo(6, 0);
13 ctx.lineTo(3, 3);
14 ctx.closePath();
15 ctx.fill();
16 ctx.stroke()
    [all...]
  /external/chromium_org/chrome/browser/resources/bookmark_manager/css/
bmm.css.js 7 var ctx = document.getCSSCanvasContext('2d', 'drop-down-arrow', 9, 4);
8 ctx.fillStyle = '#000';
9 ctx.translate(1.5, .5);
10 ctx.beginPath();
11 ctx.moveTo(0, 0);
12 ctx.lineTo(6, 0);
13 ctx.lineTo(3, 3);
14 ctx.closePath();
15 ctx.fill();
16 ctx.stroke()
    [all...]
  /external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/css/
bmm.css.js 7 var ctx = document.getCSSCanvasContext('2d', 'drop-down-arrow', 9, 4);
8 ctx.fillStyle = '#000';
9 ctx.translate(1.5, .5);
10 ctx.beginPath();
11 ctx.moveTo(0, 0);
12 ctx.lineTo(6, 0);
13 ctx.lineTo(3, 3);
14 ctx.closePath();
15 ctx.fill();
16 ctx.stroke()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_context.c 123 static boolean delete_blend_state(struct cso_context *ctx, void *state)
127 if (ctx->blend == cso->data)
136 static boolean delete_depth_stencil_state(struct cso_context *ctx, void *state)
141 if (ctx->depth_stencil == cso->data)
151 static boolean delete_sampler_state(struct cso_context *ctx, void *state)
160 static boolean delete_rasterizer_state(struct cso_context *ctx, void *state)
164 if (ctx->rasterizer == cso->data)
172 static boolean delete_vertex_elements(struct cso_context *ctx,
177 if (ctx->velements == cso->data)
187 static INLINE boolean delete_cso(struct cso_context *ctx,
212 struct cso_context *ctx = (struct cso_context *)user_data; local
255 struct cso_context *ctx = CALLOC_STRUCT(cso_context); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_extensions.c 38 * Initializes potential list of extensions if ctx == NULL, or actually enables
42 intelInitExtensions(struct gl_context *ctx)
44 struct intel_context *intel = intel_context(ctx);
46 ctx->Extensions.ARB_draw_elements_base_vertex = true;
47 ctx->Extensions.ARB_explicit_attrib_location = true;
48 if (_mesa_is_desktop_gl(ctx))
49 ctx->Extensions.ARB_framebuffer_object = true;
50 ctx->Extensions.ARB_half_float_pixel = true;
51 ctx->Extensions.ARB_map_buffer_range = true;
52 ctx->Extensions.ARB_point_sprite = true
    [all...]
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_context.c 123 static boolean delete_blend_state(struct cso_context *ctx, void *state)
127 if (ctx->blend == cso->data)
136 static boolean delete_depth_stencil_state(struct cso_context *ctx, void *state)
141 if (ctx->depth_stencil == cso->data)
151 static boolean delete_sampler_state(struct cso_context *ctx, void *state)
160 static boolean delete_rasterizer_state(struct cso_context *ctx, void *state)
164 if (ctx->rasterizer == cso->data)
172 static boolean delete_vertex_elements(struct cso_context *ctx,
177 if (ctx->velements == cso->data)
187 static INLINE boolean delete_cso(struct cso_context *ctx,
212 struct cso_context *ctx = (struct cso_context *)user_data; local
255 struct cso_context *ctx = CALLOC_STRUCT(cso_context); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_extensions.c 38 * Initializes potential list of extensions if ctx == NULL, or actually enables
42 intelInitExtensions(struct gl_context *ctx)
44 struct intel_context *intel = intel_context(ctx);
46 ctx->Extensions.ARB_draw_elements_base_vertex = true;
47 ctx->Extensions.ARB_explicit_attrib_location = true;
48 if (_mesa_is_desktop_gl(ctx))
49 ctx->Extensions.ARB_framebuffer_object = true;
50 ctx->Extensions.ARB_half_float_pixel = true;
51 ctx->Extensions.ARB_map_buffer_range = true;
52 ctx->Extensions.ARB_point_sprite = true
    [all...]
  /device/generic/goldfish/opengl/system/GLESv1_enc/
gl_entry.cpp 306 #define GET_CONTEXT gl_client_context_t * ctx = getCurrentContext()
312 ctx->glAlphaFunc(ctx, func, ref);
318 ctx->glClearColor(ctx, red, green, blue, alpha);
324 ctx->glClearDepthf(ctx, depth);
330 ctx->glClipPlanef(ctx, plane, equation);
336 ctx->glColor4f(ctx, red, green, blue, alpha)
    [all...]
  /device/generic/goldfish/opengl/system/GLESv2_enc/
gl2_entry.cpp 223 #define GET_CONTEXT gl2_client_context_t * ctx = getCurrentContext()
229 ctx->glActiveTexture(ctx, texture);
235 ctx->glAttachShader(ctx, program, shader);
241 ctx->glBindAttribLocation(ctx, program, index, name);
247 ctx->glBindBuffer(ctx, target, buffer);
253 ctx->glBindFramebuffer(ctx, target, framebuffer)
    [all...]
gl2_client_proc.h 12 typedef void (gl2_APIENTRY *glActiveTexture_client_proc_t) (void * ctx, GLenum);
13 typedef void (gl2_APIENTRY *glAttachShader_client_proc_t) (void * ctx, GLuint, GLuint);
14 typedef void (gl2_APIENTRY *glBindAttribLocation_client_proc_t) (void * ctx, GLuint, GLuint, const GLchar*);
15 typedef void (gl2_APIENTRY *glBindBuffer_client_proc_t) (void * ctx, GLenum, GLuint);
16 typedef void (gl2_APIENTRY *glBindFramebuffer_client_proc_t) (void * ctx, GLenum, GLuint);
17 typedef void (gl2_APIENTRY *glBindRenderbuffer_client_proc_t) (void * ctx, GLenum, GLuint);
18 typedef void (gl2_APIENTRY *glBindTexture_client_proc_t) (void * ctx, GLenum, GLuint);
19 typedef void (gl2_APIENTRY *glBlendColor_client_proc_t) (void * ctx, GLclampf, GLclampf, GLclampf, GLclampf);
20 typedef void (gl2_APIENTRY *glBlendEquation_client_proc_t) (void * ctx, GLenum);
21 typedef void (gl2_APIENTRY *glBlendEquationSeparate_client_proc_t) (void * ctx, GLenum, GLenum)
    [all...]

Completed in 3899 milliseconds

1 2 3 4 5 6 7 8 91011>>