Searched refs:ctx (Results 26 - 50 of 4049) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/main/
H A Dpixelstore.c42 GET_CURRENT_CONTEXT(ctx);
46 if (!_mesa_is_desktop_gl(ctx))
48 ctx->Pack.SwapBytes = param ? GL_TRUE : GL_FALSE;
51 if (!_mesa_is_desktop_gl(ctx))
53 ctx->Pack.LsbFirst = param ? GL_TRUE : GL_FALSE;
56 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
60 ctx->Pack.RowLength = param;
63 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
295 _mesa_compressed_pixel_storage_error_check( struct gl_context *ctx, GLint dimensions, const struct gl_pixelstore_attrib *packing, const char *caller) argument
[all...]
H A Dmultisample.c42 GET_CURRENT_CONTEXT(ctx);
44 FLUSH_VERTICES(ctx, 0);
46 ctx->Multisample.SampleCoverageValue = CLAMP(value, 0.0f, 1.0f);
47 ctx->Multisample.SampleCoverageInvert = invert;
48 ctx->NewState |= _NEW_MULTISAMPLE;
54 * \param ctx the GL context.
57 _mesa_init_multisample(struct gl_context *ctx) argument
59 ctx->Multisample.Enabled = GL_TRUE;
60 ctx->Multisample.SampleAlphaToCoverage = GL_FALSE;
61 ctx
151 _mesa_check_sample_count(struct gl_context *ctx, GLenum target, GLenum internalFormat, GLsizei samples) argument
[all...]
H A Ddrawpix.c50 GET_CURRENT_CONTEXT(ctx);
52 FLUSH_VERTICES(ctx, 0);
55 _mesa_debug(ctx, "glDrawPixels(%d, %d, %s, %s, %p) // to %s at %d, %d\n",
60 _mesa_enum_to_string(ctx->DrawBuffer->ColorDrawBuffer[0]),
61 IROUND(ctx->Current.RasterPos[0]),
62 IROUND(ctx->Current.RasterPos[1]));
66 _mesa_error( ctx, GL_INVALID_VALUE, "glDrawPixels(width or height < 0)" );
73 _mesa_set_vp_override(ctx, GL_TRUE);
76 if (!_mesa_valid_to_render(ctx, "glDrawPixels")) {
93 _mesa_error(ctx, GL_INVALID_OPERATIO
[all...]
H A Dstate.c60 * ctx->VertexProgram._Enabled
61 * ctx->FragmentProgram._Enabled
62 * ctx->ATIFragmentShader._Enabled
66 update_program_enables(struct gl_context *ctx) argument
72 ctx->VertexProgram._Enabled = ctx->VertexProgram.Enabled
73 && ctx->VertexProgram.Current->arb.Instructions;
74 ctx->FragmentProgram._Enabled = ctx->FragmentProgram.Enabled
75 && ctx
96 update_program(struct gl_context *ctx) argument
309 update_program_constants(struct gl_context *ctx) argument
343 update_frontbit(struct gl_context *ctx) argument
356 update_twoside(struct gl_context *ctx) argument
523 _mesa_set_varying_vp_inputs( struct gl_context *ctx, GLbitfield64 varying_inputs ) argument
551 _mesa_set_vp_override(struct gl_context *ctx, GLboolean flag) argument
[all...]
H A Ddepth.c44 GET_CURRENT_CONTEXT(ctx);
47 _mesa_debug(ctx, "glClearDepth(%f)\n", depth);
49 ctx->Depth.Clear = CLAMP( depth, 0.0, 1.0 );
63 GET_CURRENT_CONTEXT(ctx);
66 _mesa_debug(ctx, "glDepthFunc %s\n", _mesa_enum_to_string(func));
68 if (ctx->Depth.Func == func)
82 _mesa_error( ctx, GL_INVALID_ENUM, "glDepth.Func" );
86 FLUSH_VERTICES(ctx, _NEW_DEPTH);
87 ctx->Depth.Func = func;
89 if (ctx
156 _mesa_init_depth(struct gl_context *ctx) argument
[all...]
H A Dstate.h32 _mesa_update_state(struct gl_context *ctx);
38 _mesa_update_state_locked(struct gl_context *ctx);
42 _mesa_set_varying_vp_inputs(struct gl_context *ctx, GLbitfield64 varying_inputs);
46 _mesa_set_vp_override(struct gl_context *ctx, GLboolean flag);
53 _mesa_need_secondary_color(const struct gl_context *ctx) argument
55 if (ctx->Light.Enabled &&
56 ctx->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR)
59 if (ctx->Fog.ColorSumEnabled)
62 if (ctx->VertexProgram._Current &&
63 (ctx
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_state.h35 static inline bool fd_depth_enabled(struct fd_context *ctx) argument
37 return ctx->zsa && ctx->zsa->depth.enabled;
40 static inline bool fd_stencil_enabled(struct fd_context *ctx) argument
42 return ctx->zsa && ctx->zsa->stencil[0].enabled;
45 static inline bool fd_logicop_enabled(struct fd_context *ctx) argument
47 return ctx->blend && ctx->blend->logicop_enable;
50 static inline bool fd_blend_enabled(struct fd_context *ctx, unsigne argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_extensions.h33 intelInitExtensions(struct gl_context *ctx);
36 intelInitExtensionsES1(struct gl_context *ctx);
39 intelInitExtensionsES2(struct gl_context *ctx);
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dbatch_matmul_op.cc25 explicit BatchMatMulOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) { argument
26 OP_REQUIRES_OK(ctx, ctx->GetAttr("adj_x", &adj_x_));
27 OP_REQUIRES_OK(ctx, ctx->GetAttr("adj_y", &adj_y_));
30 void Compile(XlaOpKernelContext* ctx) override {
31 auto result = BatchDot(ctx->builder(), ctx->Input(0), ctx
[all...]
H A Dmatrix_triangular_solve_op.cc25 explicit MatrixTriangularSolveOp(OpKernelConstruction* ctx) argument
26 : XlaOpKernel(ctx) {
27 OP_REQUIRES_OK(ctx, ctx->GetAttr("lower", &lower_));
28 OP_REQUIRES_OK(ctx, ctx->GetAttr("adjoint", &adjoint_));
31 void Compile(XlaOpKernelContext* ctx) override {
33 ctx->builder(), ctx->Input(0), ctx
[all...]
H A Daggregate_ops.cc24 explicit AddNOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) {} argument
26 void Compile(XlaOpKernelContext* ctx) override {
27 if (!ctx->ValidateInputsAreSameShape(this)) return;
29 OP_REQUIRES(ctx, ctx->num_inputs() >= 1,
32 xla::ComputationDataHandle sum = ctx->Input(0);
33 for (int i = 1; i < ctx->num_inputs(); ++i) {
34 sum = ctx->builder()->Add(sum, ctx
[all...]
H A Dvariable_ops.cc34 explicit VarIsInitializedOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) {} argument
35 void Compile(XlaOpKernelContext* ctx) override {
37 OP_REQUIRES_OK(ctx, ctx->GetResourceInput(0, &variable));
38 ctx->SetOutput(0,
39 ctx->builder()->ConstantR0<bool>(variable->initialized()));
46 explicit ReadVariableOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) { argument
47 OP_REQUIRES_OK(ctx, ct
64 AssignVariableOp(OpKernelConstruction* ctx) argument
74 AssignAddVariableOp(OpKernelConstruction* ctx) argument
90 AssignSubVariableOp(OpKernelConstruction* ctx) argument
106 ResourceGatherOp(OpKernelConstruction* ctx) argument
133 VariableShapeOp(OpKernelConstruction* ctx) argument
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/
H A DAbstractClassDefVisitor.java22 public Object visit (final ClassDef cls, final Object ctx) argument
24 visit (cls.getConstants (), ctx);
25 visit (cls.getInterfaces (), ctx);
26 visit (cls.getFields (), ctx);
27 visit (cls.getMethods (), ctx);
28 visit (cls.getAttributes (), ctx);
30 return ctx;
33 public Object visit (final IAttributeCollection attributes, final Object ctx) argument
35 return ctx;
38 public Object visit (final IConstantCollection constants, final Object ctx) argument
43 visit(final IFieldCollection fields, final Object ctx) argument
48 visit(final IInterfaceCollection interfaces, final Object ctx) argument
53 visit(final IMethodCollection methods, final Object ctx) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dnine_queue.c83 nine_queue_wait_flush(struct nine_queue_pool* ctx) argument
85 struct nine_cmdbuf *cmdbuf = &ctx->pool[ctx->tail];
88 pipe_mutex_lock(ctx->mutex_push);
92 pipe_condvar_wait(ctx->event_push, ctx->mutex_push);
95 pipe_mutex_unlock(ctx->mutex_push);
98 ctx->cur_instr = 0;
105 nine_queue_get(struct nine_queue_pool* ctx) argument
107 struct nine_cmdbuf *cmdbuf = &ctx
139 nine_queue_flush(struct nine_queue_pool* ctx) argument
177 nine_queue_alloc(struct nine_queue_pool* ctx, unsigned space) argument
211 nine_queue_no_flushed_work(struct nine_queue_pool* ctx) argument
220 nine_queue_isempty(struct nine_queue_pool* ctx) argument
231 struct nine_queue_pool *ctx; local
265 nine_queue_delete(struct nine_queue_pool *ctx) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_span.c55 radeon_renderbuffer_map(struct gl_context *ctx, struct gl_renderbuffer *rb) argument
64 ctx->Driver.MapRenderbuffer(ctx, rb, 0, 0, rb->Width, rb->Height,
75 radeon_renderbuffer_unmap(struct gl_context *ctx, struct gl_renderbuffer *rb) argument
81 ctx->Driver.UnmapRenderbuffer(ctx, rb);
88 radeon_map_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb) argument
94 __func__, ctx, fb);
98 radeon_renderbuffer_map(ctx, fb->Attachment[i].Renderbuffer);
100 radeon_check_front_buffer_rendering(ctx);
104 radeon_unmap_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb) argument
119 radeonSpanRenderStart(struct gl_context * ctx) argument
132 radeonSpanRenderFinish(struct gl_context * ctx) argument
142 radeonInitSpanFuncs(struct gl_context * ctx) argument
[all...]
H A Dradeon_span.h45 extern void radeonInitSpanFuncs(struct gl_context * ctx);
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_span.c55 radeon_renderbuffer_map(struct gl_context *ctx, struct gl_renderbuffer *rb) argument
64 ctx->Driver.MapRenderbuffer(ctx, rb, 0, 0, rb->Width, rb->Height,
75 radeon_renderbuffer_unmap(struct gl_context *ctx, struct gl_renderbuffer *rb) argument
81 ctx->Driver.UnmapRenderbuffer(ctx, rb);
88 radeon_map_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb) argument
94 __func__, ctx, fb);
98 radeon_renderbuffer_map(ctx, fb->Attachment[i].Renderbuffer);
100 radeon_check_front_buffer_rendering(ctx);
104 radeon_unmap_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb) argument
119 radeonSpanRenderStart(struct gl_context * ctx) argument
132 radeonSpanRenderFinish(struct gl_context * ctx) argument
142 radeonInitSpanFuncs(struct gl_context * ctx) argument
[all...]
H A Dradeon_span.h45 extern void radeonInitSpanFuncs(struct gl_context * ctx);
/external/libxkbcommon/xkbcommon/test/
H A Dlog.c49 log_fn(struct xkb_context *ctx, enum xkb_log_level level, argument
54 darray_char *ls = xkb_context_get_user_data(ctx);
70 struct xkb_context *ctx; local
77 ctx = test_get_context(0);
78 assert(ctx);
81 xkb_context_set_user_data(ctx, &log_string);
82 xkb_context_set_log_fn(ctx, log_fn);
84 log_warn(ctx, "first warning: %d\n", 87);
85 log_info(ctx, "first info\n");
86 log_dbg(ctx, "firs
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_span.c37 renderbuffer_map_unmap(struct gl_context *ctx, struct gl_renderbuffer *rb, argument
43 nouveau_bo_map(s->bo, NOUVEAU_BO_RDWR, context_client(ctx));
47 framebuffer_map_unmap(struct gl_context *ctx, struct gl_framebuffer *fb, GLboolean map) argument
52 renderbuffer_map_unmap(ctx, fb->_ColorDrawBuffers[i], map);
54 renderbuffer_map_unmap(ctx, fb->_ColorReadBuffer, map);
57 renderbuffer_map_unmap(ctx, fb->Attachment[BUFFER_DEPTH].Renderbuffer, map);
61 span_map_unmap(struct gl_context *ctx, GLboolean map) argument
65 framebuffer_map_unmap(ctx, ctx->DrawBuffer, map);
67 if (ctx
78 nouveau_span_start(struct gl_context *ctx) argument
85 nouveau_span_finish(struct gl_context *ctx) argument
92 nouveau_span_functions_init(struct gl_context *ctx) argument
[all...]
H A Dnv20_driver.h42 nv20_vbo_init(struct gl_context *ctx);
45 nv20_vbo_destroy(struct gl_context *ctx);
48 nv20_swtnl_init(struct gl_context *ctx);
51 nv20_swtnl_destroy(struct gl_context *ctx);
55 nv20_emit_framebuffer(struct gl_context *ctx, int emit);
58 nv20_emit_viewport(struct gl_context *ctx, int emit);
62 nv20_emit_point_mode(struct gl_context *ctx, int emit);
66 nv20_emit_logic_opcode(struct gl_context *ctx, int emit);
70 nv20_emit_tex_env(struct gl_context *ctx, int emit);
73 nv20_emit_frag(struct gl_context *ctx, in
[all...]
/external/boringssl/src/decrepit/bio/
H A Dbase64_bio.c92 BIO_B64_CTX *ctx; local
94 ctx = OPENSSL_malloc(sizeof(*ctx));
95 if (ctx == NULL) {
99 OPENSSL_memset(ctx, 0, sizeof(*ctx));
101 ctx->cont = 1;
102 ctx->start = 1;
105 bio->ptr = (char *)ctx;
122 BIO_B64_CTX *ctx; local
322 BIO_B64_CTX *ctx; local
432 BIO_B64_CTX *ctx; local
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fNegativeTextureApiTests.cpp91 void activetexture (NegativeTestContext& ctx) argument
93 ctx.beginSection("GL_INVALID_ENUM is generated if texture is not one of GL_TEXTUREi, where i ranges from 0 to (GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS - 1).");
94 ctx.glActiveTexture(-1);
95 ctx.expectError(GL_INVALID_ENUM);
96 int numMaxTextureUnits = ctx.getInteger(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS);
97 ctx.glActiveTexture(GL_TEXTURE0 + numMaxTextureUnits);
98 ctx.expectError(GL_INVALID_ENUM);
99 ctx.endSection();
104 void bindtexture (NegativeTestContext& ctx) argument
107 ctx
181 compressedteximage2d_invalid_target(NegativeTestContext& ctx) argument
191 compressedteximage2d_invalid_format(NegativeTestContext& ctx) argument
215 compressedteximage2d_neg_level(NegativeTestContext& ctx) argument
235 compressedteximage2d_max_level(NegativeTestContext& ctx) argument
260 compressedteximage2d_neg_width_height(NegativeTestContext& ctx) argument
330 compressedteximage2d_max_width_height(NegativeTestContext& ctx) argument
402 compressedteximage2d_invalid_border(NegativeTestContext& ctx) argument
458 compressedteximage2d_invalid_size(NegativeTestContext& ctx) argument
545 compressedteximage2d_neg_size(NegativeTestContext& ctx) argument
553 compressedteximage2d_invalid_width_height(NegativeTestContext& ctx) argument
590 compressedteximage2d_invalid_buffer_target(NegativeTestContext& ctx) argument
617 copyteximage2d_invalid_target(NegativeTestContext& ctx) argument
625 copyteximage2d_invalid_format(NegativeTestContext& ctx) argument
645 copyteximage2d_inequal_width_height_cube(NegativeTestContext& ctx) argument
663 copyteximage2d_neg_level(NegativeTestContext& ctx) argument
683 copyteximage2d_max_level(NegativeTestContext& ctx) argument
708 copyteximage2d_neg_width_height(NegativeTestContext& ctx) argument
778 copyteximage2d_max_width_height(NegativeTestContext& ctx) argument
851 copyteximage2d_invalid_border(NegativeTestContext& ctx) argument
907 copyteximage2d_incomplete_framebuffer(NegativeTestContext& ctx) argument
935 copytexsubimage2d_invalid_target(NegativeTestContext& ctx) argument
949 copytexsubimage2d_read_buffer_is_none(NegativeTestContext& ctx) argument
965 copytexsubimage2d_texture_internalformat(NegativeTestContext& ctx) argument
980 copytexsubimage2d_neg_level(NegativeTestContext& ctx) argument
1002 copytexsubimage2d_max_level(NegativeTestContext& ctx) argument
1029 copytexsubimage2d_neg_offset(NegativeTestContext& ctx) argument
1048 copytexsubimage2d_invalid_offset(NegativeTestContext& ctx) argument
1067 copytexsubimage2d_neg_width_height(NegativeTestContext& ctx) argument
1086 copytexsubimage2d_incomplete_framebuffer(NegativeTestContext& ctx) argument
1134 deletetextures(NegativeTestContext& ctx) argument
1153 generatemipmap(NegativeTestContext& ctx) argument
1210 gentextures(NegativeTestContext& ctx) argument
1220 pixelstorei(NegativeTestContext& ctx) argument
1257 teximage2d(NegativeTestContext& ctx) argument
1283 teximage2d_inequal_width_height_cube(NegativeTestContext& ctx) argument
1301 teximage2d_neg_level(NegativeTestContext& ctx) argument
1324 teximage2d_max_level(NegativeTestContext& ctx) argument
1349 teximage2d_neg_width_height(NegativeTestContext& ctx) argument
1419 teximage2d_max_width_height(NegativeTestContext& ctx) argument
1492 teximage2d_invalid_border(NegativeTestContext& ctx) argument
1514 teximage2d_invalid_buffer_target(NegativeTestContext& ctx) argument
1553 texsubimage2d(NegativeTestContext& ctx) argument
1594 texsubimage2d_neg_level(NegativeTestContext& ctx) argument
1620 texsubimage2d_max_level(NegativeTestContext& ctx) argument
1648 texsubimage2d_neg_offset(NegativeTestContext& ctx) argument
1668 texsubimage2d_invalid_offset(NegativeTestContext& ctx) argument
1688 texsubimage2d_neg_width_height(NegativeTestContext& ctx) argument
1708 texsubimage2d_invalid_buffer_target(NegativeTestContext& ctx) argument
1752 texparameteri(NegativeTestContext& ctx) argument
1874 texparameterf(NegativeTestContext& ctx) argument
1995 texparameteriv(NegativeTestContext& ctx) argument
2112 texparameterfv(NegativeTestContext& ctx) argument
2229 texparameterIiv(NegativeTestContext& ctx) argument
2339 texparameterIuiv(NegativeTestContext& ctx) argument
2441 compressedtexsubimage2d(NegativeTestContext& ctx) argument
2481 compressedtexsubimage2d_neg_level(NegativeTestContext& ctx) argument
2507 compressedtexsubimage2d_max_level(NegativeTestContext& ctx) argument
2535 compressedtexsubimage2d_neg_offset(NegativeTestContext& ctx) argument
2559 compressedtexsubimage2d_invalid_offset(NegativeTestContext& ctx) argument
2580 compressedtexsubimage2d_neg_width_height(NegativeTestContext& ctx) argument
2600 compressedtexsubimage2d_invalid_size(NegativeTestContext& ctx) argument
2619 compressedtexsubimage2d_invalid_buffer_target(NegativeTestContext& ctx) argument
2653 teximage3d(NegativeTestContext& ctx) argument
2711 teximage3d_neg_level(NegativeTestContext& ctx) argument
2729 teximage3d_max_level(NegativeTestContext& ctx) argument
2744 teximage3d_neg_width_height_depth(NegativeTestContext& ctx) argument
2779 teximage3d_max_width_height_depth(NegativeTestContext& ctx) argument
2807 teximage3d_invalid_border(NegativeTestContext& ctx) argument
2830 teximage3d_invalid_buffer_target(NegativeTestContext& ctx) argument
2871 texsubimage3d(NegativeTestContext& ctx) argument
2912 texsubimage3d_neg_level(NegativeTestContext& ctx) argument
2943 texsubimage3d_max_level(NegativeTestContext& ctx) argument
2969 texsubimage3d_neg_offset(NegativeTestContext& ctx) argument
3018 texsubimage3d_invalid_offset(NegativeTestContext& ctx) argument
3044 texsubimage3d_neg_width_height(NegativeTestContext& ctx) argument
3071 texsubimage3d_invalid_buffer_target(NegativeTestContext& ctx) argument
3117 copytexsubimage3d(NegativeTestContext& ctx) argument
3132 copytexsubimage3d_neg_level(NegativeTestContext& ctx) argument
3162 copytexsubimage3d_max_level(NegativeTestContext& ctx) argument
3200 copytexsubimage3d_neg_offset(NegativeTestContext& ctx) argument
3221 copytexsubimage3d_invalid_offset(NegativeTestContext& ctx) argument
3246 copytexsubimage3d_neg_width_height(NegativeTestContext& ctx) argument
3266 copytexsubimage3d_incomplete_framebuffer(NegativeTestContext& ctx) argument
3294 compressedteximage3d(NegativeTestContext& ctx) argument
3311 compressedteximage3d_neg_level(NegativeTestContext& ctx) argument
3319 compressedteximage3d_max_level(NegativeTestContext& ctx) argument
3328 compressedteximage3d_neg_width_height_depth(NegativeTestContext& ctx) argument
3342 compressedteximage3d_max_width_height_depth(NegativeTestContext& ctx) argument
3358 compressedteximage3d_invalid_border(NegativeTestContext& ctx) argument
3368 compressedteximage3d_invalid_size(NegativeTestContext& ctx) argument
3382 compressedteximage3d_invalid_width_height(NegativeTestContext& ctx) argument
3399 compressedteximage3d_invalid_buffer_target(NegativeTestContext& ctx) argument
3426 compressedtexsubimage3d(NegativeTestContext& ctx) argument
3471 compressedtexsubimage3d_neg_level(NegativeTestContext& ctx) argument
3487 compressedtexsubimage3d_max_level(NegativeTestContext& ctx) argument
3504 compressedtexsubimage3d_neg_offset(NegativeTestContext& ctx) argument
3526 compressedtexsubimage3d_invalid_offset(NegativeTestContext& ctx) argument
3549 compressedtexsubimage3d_neg_width_height_depth(NegativeTestContext& ctx) argument
3571 compressedtexsubimage3d_invalid_size(NegativeTestContext& ctx) argument
3590 compressedtexsubimage3d_invalid_buffer_target(NegativeTestContext& ctx) argument
3625 texstorage2d(NegativeTestContext& ctx) argument
3673 texstorage2d_invalid_binding(NegativeTestContext& ctx) argument
3722 texstorage2d_invalid_levels(NegativeTestContext& ctx) argument
3767 texstorage3d(NegativeTestContext& ctx) argument
3819 texstorage3d_invalid_binding(NegativeTestContext& ctx) argument
3867 texstorage3d_invalid_levels(NegativeTestContext& ctx) argument
3913 srgb_decode_texparameteri(NegativeTestContext& ctx) argument
3932 srgb_decode_texparameterf(NegativeTestContext& ctx) argument
3951 srgb_decode_texparameteriv(NegativeTestContext& ctx) argument
3971 srgb_decode_texparameterfv(NegativeTestContext& ctx) argument
3991 srgb_decode_texparameterIiv(NegativeTestContext& ctx) argument
4015 srgb_decode_texparameterIuiv(NegativeTestContext& ctx) argument
[all...]
H A Des31fNegativeShaderApiTests.cpp91 void create_shader (NegativeTestContext& ctx) argument
93 ctx.beginSection("GL_INVALID_ENUM is generated if shaderType is not an accepted value.");
94 ctx.glCreateShader(-1);
95 ctx.expectError(GL_INVALID_ENUM);
96 ctx.endSection();
99 void shader_source (NegativeTestContext& ctx) argument
102 const GLuint notAShader = ctx.glCreateShader(GL_VERTEX_SHADER);
103 ctx.glDeleteShader(notAShader);
105 ctx.beginSection("GL_INVALID_VALUE is generated if shader is not a value generated by OpenGL.");
106 ctx
126 compile_shader(NegativeTestContext& ctx) argument
145 delete_shader(NegativeTestContext& ctx) argument
156 shader_binary(NegativeTestContext& ctx) argument
232 attach_shader(NegativeTestContext& ctx) argument
282 detach_shader(NegativeTestContext& ctx) argument
323 link_program(NegativeTestContext& ctx) argument
371 use_program(NegativeTestContext& ctx) argument
425 delete_program(NegativeTestContext& ctx) argument
445 validate_program(NegativeTestContext& ctx) argument
465 get_program_binary(NegativeTestContext& ctx) argument
505 program_binary(NegativeTestContext& ctx) argument
543 program_parameteri(NegativeTestContext& ctx) argument
575 gen_samplers(NegativeTestContext& ctx) argument
584 bind_sampler(NegativeTestContext& ctx) argument
608 delete_samplers(NegativeTestContext& ctx) argument
616 get_sampler_parameteriv(NegativeTestContext& ctx) argument
635 get_sampler_parameterfv(NegativeTestContext& ctx) argument
654 get_sampler_parameterIiv(NegativeTestContext& ctx) argument
677 get_sampler_parameterIuiv(NegativeTestContext& ctx) argument
700 sampler_parameteri(NegativeTestContext& ctx) argument
727 sampler_parameteriv(NegativeTestContext& ctx) argument
748 sampler_parameterf(NegativeTestContext& ctx) argument
775 sampler_parameterfv(NegativeTestContext& ctx) argument
796 sampler_parameterIiv(NegativeTestContext& ctx) argument
817 sampler_parameterIuiv(NegativeTestContext& ctx) argument
840 get_attrib_location(NegativeTestContext& ctx) argument
876 get_uniform_location(NegativeTestContext& ctx) argument
907 bind_attrib_location(NegativeTestContext& ctx) argument
937 uniform_block_binding(NegativeTestContext& ctx) argument
983 uniformf_invalid_program(NegativeTestContext& ctx) argument
998 uniformf_incompatible_type(NegativeTestContext& ctx) argument
1044 uniformf_invalid_location(NegativeTestContext& ctx) argument
1078 uniformfv_invalid_program(NegativeTestContext& ctx) argument
1095 uniformfv_incompatible_type(NegativeTestContext& ctx) argument
1143 uniformfv_invalid_location(NegativeTestContext& ctx) argument
1177 uniformfv_invalid_count(NegativeTestContext& ctx) argument
1210 uniformi_invalid_program(NegativeTestContext& ctx) argument
1225 uniformi_incompatible_type(NegativeTestContext& ctx) argument
1281 uniformi_invalid_location(NegativeTestContext& ctx) argument
1315 uniformiv_invalid_program(NegativeTestContext& ctx) argument
1332 uniformiv_incompatible_type(NegativeTestContext& ctx) argument
1390 uniformiv_invalid_location(NegativeTestContext& ctx) argument
1424 uniformiv_invalid_count(NegativeTestContext& ctx) argument
1457 uniformui_invalid_program(NegativeTestContext& ctx) argument
1472 uniformui_incompatible_type(NegativeTestContext& ctx) argument
1534 uniformui_invalid_location(NegativeTestContext& ctx) argument
1568 uniformuiv_invalid_program(NegativeTestContext& ctx) argument
1585 uniformuiv_incompatible_type(NegativeTestContext& ctx) argument
1649 uniformuiv_invalid_location(NegativeTestContext& ctx) argument
1683 uniformuiv_invalid_count(NegativeTestContext& ctx) argument
1717 uniform_matrixfv_invalid_program(NegativeTestContext& ctx) argument
1745 uniform_matrixfv_incompatible_type(NegativeTestContext& ctx) argument
1811 uniform_matrixfv_invalid_location(NegativeTestContext& ctx) argument
1867 uniform_matrixfv_invalid_count(NegativeTestContext& ctx) argument
1910 gen_transform_feedbacks(NegativeTestContext& ctx) argument
1919 bind_transform_feedback(NegativeTestContext& ctx) argument
1968 delete_transform_feedbacks(NegativeTestContext& ctx) argument
2013 begin_transform_feedback(NegativeTestContext& ctx) argument
2070 pause_transform_feedback(NegativeTestContext& ctx) argument
2105 resume_transform_feedback(NegativeTestContext& ctx) argument
2141 end_transform_feedback(NegativeTestContext& ctx) argument
2173 get_transform_feedback_varying(NegativeTestContext& ctx) argument
2219 transform_feedback_varyings(NegativeTestContext& ctx) argument
2265 link_compute_shader(NegativeTestContext& ctx) argument
2337 compile_compute_shader_helper(NegativeTestContext& ctx, const char* const* computeShaderSource, GLint* compileStatus) argument
2348 compile_compute_shader(NegativeTestContext& ctx) argument
2506 srgb_decode_samplerparameteri(NegativeTestContext& ctx) argument
2524 srgb_decode_samplerparameterf(NegativeTestContext& ctx) argument
2542 srgb_decode_samplerparameteriv(NegativeTestContext& ctx) argument
2561 srgb_decode_samplerparameterfv(NegativeTestContext& ctx) argument
2580 srgb_decode_samplerparameterIiv(NegativeTestContext& ctx) argument
2603 srgb_decode_samplerparameterIuiv(NegativeTestContext& ctx) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_transform.c41 emit_instruction(struct tgsi_transform_context *ctx, argument
44 uint ti = ctx->ti;
47 ctx->tokens_out + ti,
48 ctx->header,
49 ctx->max_tokens_out - ti);
50 ctx->ti = ti;
55 emit_declaration(struct tgsi_transform_context *ctx, argument
58 uint ti = ctx->ti;
61 ctx->tokens_out + ti,
62 ctx
69 emit_immediate(struct tgsi_transform_context *ctx, const struct tgsi_full_immediate *imm) argument
83 emit_property(struct tgsi_transform_context *ctx, const struct tgsi_full_property *prop) argument
106 tgsi_transform_shader(const struct tgsi_token *tokens_in, struct tgsi_token *tokens_out, uint max_tokens_out, struct tgsi_transform_context *ctx) argument
[all...]

Completed in 1351 milliseconds

1234567891011>>