/external/mesa3d/src/mesa/tnl/ |
H A D | t_vp_build.c | 42 void _tnl_UpdateFixedFunctionProgram( struct gl_context *ctx ) 44 const struct gl_vertex_program *prev = ctx->VertexProgram._Current; 46 if (!ctx->VertexProgram._Current || 47 ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram) { 48 ctx->VertexProgram._Current 49 = ctx->VertexProgram._TnlProgram 50 = _mesa_get_fixed_func_vertex_program(ctx); 56 if (ctx->VertexProgram._Current != prev && ctx [all...] |
/external/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | evergreen_hw_context.c | 33 int si_context_init(struct r600_context *ctx) argument 37 LIST_INITHEAD(&ctx->active_query_list); 39 ctx->cs = ctx->ws->cs_create(ctx->ws); 41 ctx->max_db = 8;
|
/external/deqp/modules/gles31/functional/ |
H A D | es31fNegativeBufferApiTests.cpp | 46 void bind_buffer (NegativeTestContext& ctx) argument 48 ctx.beginSection("GL_INVALID_ENUM is generated if target is not one of the allowable values."); 49 ctx.glBindBuffer(-1, 0); 50 ctx.expectError(GL_INVALID_ENUM); 51 ctx.endSection(); 54 void delete_buffers (NegativeTestContext& ctx) argument 56 ctx.beginSection("GL_INVALID_VALUE is generated if n is negative."); 57 ctx.glDeleteBuffers(-1, 0); 58 ctx.expectError(GL_INVALID_VALUE); 59 ctx 62 gen_buffers(NegativeTestContext& ctx) argument 70 buffer_data(NegativeTestContext& ctx) argument 100 buffer_sub_data(NegativeTestContext& ctx) argument 129 buffer_sub_data_size_offset(NegativeTestContext& ctx) argument 154 clear(NegativeTestContext& ctx) argument 168 read_pixels(NegativeTestContext& ctx) argument 198 read_pixels_format_mismatch(NegativeTestContext& ctx) argument 230 read_pixels_fbo_format_mismatch(NegativeTestContext& ctx) argument 309 bind_buffer_range(NegativeTestContext& ctx) argument 367 bind_buffer_base(NegativeTestContext& ctx) argument 405 clear_bufferiv(NegativeTestContext& ctx) argument 450 clear_bufferuiv(NegativeTestContext& ctx) argument 492 clear_bufferfv(NegativeTestContext& ctx) argument 537 clear_bufferfi(NegativeTestContext& ctx) argument 561 copy_buffer_sub_data(NegativeTestContext& ctx) argument 639 draw_buffers(NegativeTestContext& ctx) argument 695 flush_mapped_buffer_range(NegativeTestContext& ctx) argument 739 map_buffer_range(NegativeTestContext& ctx) argument 813 read_buffer(NegativeTestContext& ctx) argument 884 unmap_buffer(NegativeTestContext& ctx) argument 903 bind_framebuffer(NegativeTestContext& ctx) argument 913 bind_renderbuffer(NegativeTestContext& ctx) argument 923 check_framebuffer_status(NegativeTestContext& ctx) argument 933 gen_framebuffers(NegativeTestContext& ctx) argument 941 gen_renderbuffers(NegativeTestContext& ctx) argument 949 delete_framebuffers(NegativeTestContext& ctx) argument 957 delete_renderbuffers(NegativeTestContext& ctx) argument 965 framebuffer_renderbuffer(NegativeTestContext& ctx) argument 1000 framebuffer_texture2d(NegativeTestContext& ctx) argument 1064 renderbuffer_storage(NegativeTestContext& ctx) argument 1118 blit_framebuffer(NegativeTestContext& ctx) argument 1210 blit_framebuffer_multisample(NegativeTestContext& ctx) argument 1258 framebuffer_texture_layer(NegativeTestContext& ctx) argument 1332 invalidate_framebuffer(NegativeTestContext& ctx) argument 1367 invalidate_sub_framebuffer(NegativeTestContext& ctx) argument 1402 renderbuffer_storage_multisample(NegativeTestContext& ctx) argument [all...] |
H A D | es31fNegativeTextureApiTests.cpp | 90 void activetexture (NegativeTestContext& ctx) argument 92 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)."); 93 ctx.glActiveTexture(-1); 94 ctx.expectError(GL_INVALID_ENUM); 95 int numMaxTextureUnits = ctx.getInteger(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS); 96 ctx.glActiveTexture(GL_TEXTURE0 + numMaxTextureUnits); 97 ctx.expectError(GL_INVALID_ENUM); 98 ctx.endSection(); 103 void bindtexture (NegativeTestContext& ctx) argument 106 ctx 140 compressedteximage2d_invalid_target(NegativeTestContext& ctx) argument 150 compressedteximage2d_invalid_format(NegativeTestContext& ctx) argument 174 compressedteximage2d_neg_level(NegativeTestContext& ctx) argument 194 compressedteximage2d_max_level(NegativeTestContext& ctx) argument 219 compressedteximage2d_neg_width_height(NegativeTestContext& ctx) argument 289 compressedteximage2d_max_width_height(NegativeTestContext& ctx) argument 361 compressedteximage2d_invalid_border(NegativeTestContext& ctx) argument 417 compressedteximage2d_invalid_size(NegativeTestContext& ctx) argument 431 compressedteximage2d_invalid_buffer_target(NegativeTestContext& ctx) argument 458 copyteximage2d_invalid_target(NegativeTestContext& ctx) argument 466 copyteximage2d_invalid_format(NegativeTestContext& ctx) argument 486 copyteximage2d_inequal_width_height_cube(NegativeTestContext& ctx) argument 504 copyteximage2d_neg_level(NegativeTestContext& ctx) argument 524 copyteximage2d_max_level(NegativeTestContext& ctx) argument 549 copyteximage2d_neg_width_height(NegativeTestContext& ctx) argument 619 copyteximage2d_max_width_height(NegativeTestContext& ctx) argument 692 copyteximage2d_invalid_border(NegativeTestContext& ctx) argument 748 copyteximage2d_incomplete_framebuffer(NegativeTestContext& ctx) argument 776 copytexsubimage2d_invalid_target(NegativeTestContext& ctx) argument 791 copytexsubimage2d_neg_level(NegativeTestContext& ctx) argument 813 copytexsubimage2d_max_level(NegativeTestContext& ctx) argument 840 copytexsubimage2d_neg_offset(NegativeTestContext& ctx) argument 859 copytexsubimage2d_invalid_offset(NegativeTestContext& ctx) argument 878 copytexsubimage2d_neg_width_height(NegativeTestContext& ctx) argument 897 copytexsubimage2d_incomplete_framebuffer(NegativeTestContext& ctx) argument 945 deletetextures(NegativeTestContext& ctx) argument 964 generatemipmap(NegativeTestContext& ctx) argument 1021 gentextures(NegativeTestContext& ctx) argument 1031 pixelstorei(NegativeTestContext& ctx) argument 1068 teximage2d(NegativeTestContext& ctx) argument 1094 teximage2d_inequal_width_height_cube(NegativeTestContext& ctx) argument 1112 teximage2d_neg_level(NegativeTestContext& ctx) argument 1135 teximage2d_max_level(NegativeTestContext& ctx) argument 1160 teximage2d_neg_width_height(NegativeTestContext& ctx) argument 1230 teximage2d_max_width_height(NegativeTestContext& ctx) argument 1303 teximage2d_invalid_border(NegativeTestContext& ctx) argument 1325 teximage2d_invalid_buffer_target(NegativeTestContext& ctx) argument 1364 texsubimage2d(NegativeTestContext& ctx) argument 1405 texsubimage2d_neg_level(NegativeTestContext& ctx) argument 1431 texsubimage2d_max_level(NegativeTestContext& ctx) argument 1459 texsubimage2d_neg_offset(NegativeTestContext& ctx) argument 1479 texsubimage2d_invalid_offset(NegativeTestContext& ctx) argument 1499 texsubimage2d_neg_width_height(NegativeTestContext& ctx) argument 1519 texsubimage2d_invalid_buffer_target(NegativeTestContext& ctx) argument 1563 texparameteri(NegativeTestContext& ctx) argument 1614 texparameterf(NegativeTestContext& ctx) argument 1665 texparameteriv(NegativeTestContext& ctx) argument 1726 texparameterfv(NegativeTestContext& ctx) argument 1787 compressedtexsubimage2d(NegativeTestContext& ctx) argument 1827 compressedtexsubimage2d_neg_level(NegativeTestContext& ctx) argument 1853 compressedtexsubimage2d_max_level(NegativeTestContext& ctx) argument 1881 compressedtexsubimage2d_neg_offset(NegativeTestContext& ctx) argument 1905 compressedtexsubimage2d_invalid_offset(NegativeTestContext& ctx) argument 1926 compressedtexsubimage2d_neg_width_height(NegativeTestContext& ctx) argument 1946 compressedtexsubimage2d_invalid_size(NegativeTestContext& ctx) argument 1965 compressedtexsubimage2d_invalid_buffer_target(NegativeTestContext& ctx) argument 1999 teximage3d(NegativeTestContext& ctx) argument 2044 teximage3d_neg_level(NegativeTestContext& ctx) argument 2054 teximage3d_max_level(NegativeTestContext& ctx) argument 2069 teximage3d_neg_width_height_depth(NegativeTestContext& ctx) argument 2092 teximage3d_max_width_height_depth(NegativeTestContext& ctx) argument 2120 teximage3d_invalid_border(NegativeTestContext& ctx) argument 2134 teximage3d_invalid_buffer_target(NegativeTestContext& ctx) argument 2175 texsubimage3d(NegativeTestContext& ctx) argument 2216 texsubimage3d_neg_level(NegativeTestContext& ctx) argument 2236 texsubimage3d_max_level(NegativeTestContext& ctx) argument 2262 texsubimage3d_neg_offset(NegativeTestContext& ctx) argument 2294 texsubimage3d_invalid_offset(NegativeTestContext& ctx) argument 2320 texsubimage3d_neg_width_height(NegativeTestContext& ctx) argument 2334 texsubimage3d_invalid_buffer_target(NegativeTestContext& ctx) argument 2380 copytexsubimage3d(NegativeTestContext& ctx) argument 2395 copytexsubimage3d_neg_level(NegativeTestContext& ctx) argument 2415 copytexsubimage3d_max_level(NegativeTestContext& ctx) argument 2441 copytexsubimage3d_neg_offset(NegativeTestContext& ctx) argument 2462 copytexsubimage3d_invalid_offset(NegativeTestContext& ctx) argument 2487 copytexsubimage3d_neg_width_height(NegativeTestContext& ctx) argument 2507 copytexsubimage3d_incomplete_framebuffer(NegativeTestContext& ctx) argument 2535 compressedteximage3d(NegativeTestContext& ctx) argument 2552 compressedteximage3d_neg_level(NegativeTestContext& ctx) argument 2560 compressedteximage3d_max_level(NegativeTestContext& ctx) argument 2569 compressedteximage3d_neg_width_height_depth(NegativeTestContext& ctx) argument 2583 compressedteximage3d_max_width_height_depth(NegativeTestContext& ctx) argument 2599 compressedteximage3d_invalid_border(NegativeTestContext& ctx) argument 2609 compressedteximage3d_invalid_size(NegativeTestContext& ctx) argument 2623 compressedteximage3d_invalid_buffer_target(NegativeTestContext& ctx) argument 2650 compressedtexsubimage3d(NegativeTestContext& ctx) argument 2695 compressedtexsubimage3d_neg_level(NegativeTestContext& ctx) argument 2711 compressedtexsubimage3d_max_level(NegativeTestContext& ctx) argument 2728 compressedtexsubimage3d_neg_offset(NegativeTestContext& ctx) argument 2750 compressedtexsubimage3d_invalid_offset(NegativeTestContext& ctx) argument 2773 compressedtexsubimage3d_neg_width_height_depth(NegativeTestContext& ctx) argument 2795 compressedtexsubimage3d_invalid_size(NegativeTestContext& ctx) argument 2814 compressedtexsubimage3d_invalid_buffer_target(NegativeTestContext& ctx) argument 2849 texstorage2d(NegativeTestContext& ctx) argument 2883 texstorage2d_invalid_binding(NegativeTestContext& ctx) argument 2911 texstorage2d_invalid_levels(NegativeTestContext& ctx) argument 2939 texstorage3d(NegativeTestContext& ctx) argument 2975 texstorage3d_invalid_binding(NegativeTestContext& ctx) argument 3003 texstorage3d_invalid_levels(NegativeTestContext& ctx) argument [all...] |
H A D | es31fNegativeFragmentApiTests.cpp | 46 void scissor (NegativeTestContext& ctx) argument 48 ctx.beginSection("GL_INVALID_VALUE is generated if either width or height is negative."); 49 ctx.glScissor(0, 0, -1, 0); 50 ctx.expectError(GL_INVALID_VALUE); 51 ctx.glScissor(0, 0, 0, -1); 52 ctx.expectError(GL_INVALID_VALUE); 53 ctx.glScissor(0, 0, -1, -1); 54 ctx.expectError(GL_INVALID_VALUE); 55 ctx.endSection(); 58 void depth_func (NegativeTestContext& ctx) argument 66 viewport(NegativeTestContext& ctx) argument 79 stencil_func(NegativeTestContext& ctx) argument 87 stencil_func_separate(NegativeTestContext& ctx) argument 100 stencil_op(NegativeTestContext& ctx) argument 112 stencil_op_separate(NegativeTestContext& ctx) argument 129 stencil_mask_separate(NegativeTestContext& ctx) argument 138 blend_equation(NegativeTestContext& ctx) argument 146 blend_equation_separate(NegativeTestContext& ctx) argument 158 blend_func(NegativeTestContext& ctx) argument 168 blend_func_separate(NegativeTestContext& ctx) argument 183 cull_face(NegativeTestContext& ctx) argument 191 front_face(NegativeTestContext& ctx) argument 199 line_width(NegativeTestContext& ctx) argument 210 gen_queries(NegativeTestContext& ctx) argument 219 begin_query(NegativeTestContext& ctx) argument 278 end_query(NegativeTestContext& ctx) argument 303 delete_queries(NegativeTestContext& ctx) argument 317 fence_sync(NegativeTestContext& ctx) argument 330 wait_sync(NegativeTestContext& ctx) argument 352 client_wait_sync(NegativeTestContext& ctx) argument 369 delete_sync(NegativeTestContext& ctx) argument [all...] |
H A D | es31fNegativeVertexArrayApiTests.cpp | 59 void vertex_attribf (NegativeTestContext& ctx) argument 61 ctx.beginSection("GL_INVALID_VALUE is generated if index is greater than or equal to GL_MAX_VERTEX_ATTRIBS."); 62 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS); 63 ctx.glVertexAttrib1f(maxVertexAttribs, 0.0f); 64 ctx.expectError(GL_INVALID_VALUE); 65 ctx.glVertexAttrib2f(maxVertexAttribs, 0.0f, 0.0f); 66 ctx.expectError(GL_INVALID_VALUE); 67 ctx.glVertexAttrib3f(maxVertexAttribs, 0.0f, 0.0f, 0.0f); 68 ctx.expectError(GL_INVALID_VALUE); 69 ctx 74 vertex_attribfv(NegativeTestContext& ctx) argument 90 vertex_attribi4(NegativeTestContext& ctx) argument 104 vertex_attribi4v(NegativeTestContext& ctx) argument 118 vertex_attrib_pointer(NegativeTestContext& ctx) argument 169 vertex_attrib_i_pointer(NegativeTestContext& ctx) argument 213 enable_vertex_attrib_array(NegativeTestContext& ctx) argument 222 disable_vertex_attrib_array(NegativeTestContext& ctx) argument 231 gen_vertex_arrays(NegativeTestContext& ctx) argument 240 bind_vertex_array(NegativeTestContext& ctx) argument 248 delete_vertex_arrays(NegativeTestContext& ctx) argument 256 vertex_attrib_divisor(NegativeTestContext& ctx) argument 265 draw_arrays(NegativeTestContext& ctx) argument 294 draw_arrays_invalid_program(NegativeTestContext& ctx) argument 320 draw_arrays_incomplete_primitive(NegativeTestContext& ctx) argument 349 draw_elements(NegativeTestContext& ctx) argument 420 draw_elements_invalid_program(NegativeTestContext& ctx) argument 454 draw_elements_incomplete_primitive(NegativeTestContext& ctx) argument 525 draw_arrays_instanced(NegativeTestContext& ctx) argument 558 draw_arrays_instanced_invalid_program(NegativeTestContext& ctx) argument 588 draw_arrays_instanced_incomplete_primitive(NegativeTestContext& ctx) argument 621 draw_elements_instanced(NegativeTestContext& ctx) argument 696 draw_elements_instanced_invalid_program(NegativeTestContext& ctx) argument 734 draw_elements_instanced_incomplete_primitive(NegativeTestContext& ctx) argument 809 draw_range_elements(NegativeTestContext& ctx) argument 885 draw_range_elements_invalid_program(NegativeTestContext& ctx) argument 924 draw_range_elements_incomplete_primitive(NegativeTestContext& ctx) argument [all...] |
H A D | es31fNegativeShaderApiTests.cpp | 89 void create_shader (NegativeTestContext& ctx) argument 91 ctx.beginSection("GL_INVALID_ENUM is generated if shaderType is not an accepted value."); 92 ctx.glCreateShader(-1); 93 ctx.expectError(GL_INVALID_ENUM); 94 ctx.endSection(); 97 void shader_source (NegativeTestContext& ctx) argument 100 const GLuint notAShader = ctx.glCreateShader(GL_VERTEX_SHADER); 101 ctx.glDeleteShader(notAShader); 103 ctx.beginSection("GL_INVALID_VALUE is generated if shader is not a value generated by OpenGL."); 104 ctx 124 compile_shader(NegativeTestContext& ctx) argument 142 delete_shader(NegativeTestContext& ctx) argument 150 shader_binary(NegativeTestContext& ctx) argument 200 attach_shader(NegativeTestContext& ctx) argument 244 detach_shader(NegativeTestContext& ctx) argument 279 link_program(NegativeTestContext& ctx) argument 324 use_program(NegativeTestContext& ctx) argument 375 delete_program(NegativeTestContext& ctx) argument 383 validate_program(NegativeTestContext& ctx) argument 400 get_program_binary(NegativeTestContext& ctx) argument 440 program_binary(NegativeTestContext& ctx) argument 474 program_parameteri(NegativeTestContext& ctx) argument 496 gen_samplers(NegativeTestContext& ctx) argument 505 bind_sampler(NegativeTestContext& ctx) argument 529 delete_samplers(NegativeTestContext& ctx) argument 537 get_sampler_parameteriv(NegativeTestContext& ctx) argument 556 get_sampler_parameterfv(NegativeTestContext& ctx) argument 575 sampler_parameteri(NegativeTestContext& ctx) argument 593 sampler_parameteriv(NegativeTestContext& ctx) argument 614 sampler_parameterf(NegativeTestContext& ctx) argument 632 sampler_parameterfv(NegativeTestContext& ctx) argument 655 get_attrib_location(NegativeTestContext& ctx) argument 688 get_uniform_location(NegativeTestContext& ctx) argument 716 bind_attrib_location(NegativeTestContext& ctx) argument 746 uniform_block_binding(NegativeTestContext& ctx) argument 783 uniformf_invalid_program(NegativeTestContext& ctx) argument 798 uniformf_incompatible_type(NegativeTestContext& ctx) argument 844 uniformf_invalid_location(NegativeTestContext& ctx) argument 878 uniformfv_invalid_program(NegativeTestContext& ctx) argument 895 uniformfv_incompatible_type(NegativeTestContext& ctx) argument 943 uniformfv_invalid_location(NegativeTestContext& ctx) argument 977 uniformfv_invalid_count(NegativeTestContext& ctx) argument 1010 uniformi_invalid_program(NegativeTestContext& ctx) argument 1025 uniformi_incompatible_type(NegativeTestContext& ctx) argument 1081 uniformi_invalid_location(NegativeTestContext& ctx) argument 1115 uniformiv_invalid_program(NegativeTestContext& ctx) argument 1132 uniformiv_incompatible_type(NegativeTestContext& ctx) argument 1190 uniformiv_invalid_location(NegativeTestContext& ctx) argument 1224 uniformiv_invalid_count(NegativeTestContext& ctx) argument 1257 uniformui_invalid_program(NegativeTestContext& ctx) argument 1272 uniformui_incompatible_type(NegativeTestContext& ctx) argument 1334 uniformui_invalid_location(NegativeTestContext& ctx) argument 1368 uniformuiv_invalid_program(NegativeTestContext& ctx) argument 1385 uniformuiv_incompatible_type(NegativeTestContext& ctx) argument 1449 uniformuiv_invalid_location(NegativeTestContext& ctx) argument 1483 uniformuiv_invalid_count(NegativeTestContext& ctx) argument 1517 uniform_matrixfv_invalid_program(NegativeTestContext& ctx) argument 1545 uniform_matrixfv_incompatible_type(NegativeTestContext& ctx) argument 1611 uniform_matrixfv_invalid_location(NegativeTestContext& ctx) argument 1667 uniform_matrixfv_invalid_count(NegativeTestContext& ctx) argument 1710 gen_transform_feedbacks(NegativeTestContext& ctx) argument 1719 bind_transform_feedback(NegativeTestContext& ctx) argument 1758 delete_transform_feedbacks(NegativeTestContext& ctx) argument 1771 begin_transform_feedback(NegativeTestContext& ctx) argument 1828 pause_transform_feedback(NegativeTestContext& ctx) argument 1863 resume_transform_feedback(NegativeTestContext& ctx) argument 1899 end_transform_feedback(NegativeTestContext& ctx) argument 1931 get_transform_feedback_varying(NegativeTestContext& ctx) argument 1974 transform_feedback_varyings(NegativeTestContext& ctx) argument [all...] |
H A D | es31fNegativeStateApiTests.cpp | 66 void enable (NegativeTestContext& ctx) argument 68 ctx.beginSection("GL_INVALID_ENUM is generated if cap is not one of the allowed values."); 69 ctx.glEnable(-1); 70 ctx.expectError(GL_INVALID_ENUM); 71 ctx.endSection(); 74 void disable (NegativeTestContext& ctx) argument 76 ctx.beginSection("GL_INVALID_ENUM is generated if cap is not one of the allowed values."); 77 ctx.glDisable(-1); 78 ctx.expectError(GL_INVALID_ENUM); 79 ctx 83 get_booleanv(NegativeTestContext& ctx) argument 92 get_floatv(NegativeTestContext& ctx) argument 101 get_integerv(NegativeTestContext& ctx) argument 110 get_integer64v(NegativeTestContext& ctx) argument 119 get_integeri_v(NegativeTestContext& ctx) argument 137 get_integer64i_v(NegativeTestContext& ctx) argument 155 get_string(NegativeTestContext& ctx) argument 163 get_stringi(NegativeTestContext& ctx) argument 181 get_attached_shaders(NegativeTestContext& ctx) argument 207 get_shaderiv(NegativeTestContext& ctx) argument 236 get_shader_info_log(NegativeTestContext& ctx) argument 262 get_shader_precision_format(NegativeTestContext& ctx) argument 284 get_shader_source(NegativeTestContext& ctx) argument 312 get_programiv(NegativeTestContext& ctx) argument 337 get_program_info_log(NegativeTestContext& ctx) argument 365 get_tex_parameterfv(NegativeTestContext& ctx) argument 379 get_tex_parameteriv(NegativeTestContext& ctx) argument 393 get_uniformfv(NegativeTestContext& ctx) argument 430 get_uniformiv(NegativeTestContext& ctx) argument 467 get_uniformuiv(NegativeTestContext& ctx) argument 504 get_active_uniform(NegativeTestContext& ctx) argument 538 get_active_uniformsiv(NegativeTestContext& ctx) argument 584 get_active_uniform_blockiv(NegativeTestContext& ctx) argument 609 get_active_uniform_block_name(NegativeTestContext& ctx) argument 632 get_active_attrib(NegativeTestContext& ctx) argument 674 get_uniform_indices(NegativeTestContext& ctx) argument 701 get_vertex_attribfv(NegativeTestContext& ctx) argument 718 get_vertex_attribiv(NegativeTestContext& ctx) argument 735 get_vertex_attribi_iv(NegativeTestContext& ctx) argument 752 get_vertex_attribi_uiv(NegativeTestContext& ctx) argument 769 get_vertex_attrib_pointerv(NegativeTestContext& ctx) argument 786 get_frag_data_location(NegativeTestContext& ctx) argument 807 get_buffer_parameteriv(NegativeTestContext& ctx) argument 832 get_buffer_parameteri64v(NegativeTestContext& ctx) argument 857 get_buffer_pointerv(NegativeTestContext& ctx) argument 880 get_framebuffer_attachment_parameteriv(NegativeTestContext& ctx) argument 936 get_renderbuffer_parameteriv(NegativeTestContext& ctx) argument 957 get_internalformativ(NegativeTestContext& ctx) argument 1002 get_queryiv(NegativeTestContext& ctx) argument 1016 get_query_objectuiv(NegativeTestContext& ctx) argument 1052 get_synciv(NegativeTestContext& ctx) argument 1077 is_enabled(NegativeTestContext& ctx) argument 1089 hint(NegativeTestContext& ctx) argument [all...] |
/external/mesa3d/src/mesa/main/ |
H A D | 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 [all...] |
H A D | texturebarrier.c | 36 _mesa_texture_barrier(struct gl_context *ctx) argument 50 GET_CURRENT_CONTEXT(ctx); 51 ASSERT_OUTSIDE_BEGIN_END(ctx); 53 ctx->Driver.TextureBarrier(ctx);
|
H A D | feedback.c | 56 GET_CURRENT_CONTEXT(ctx); 57 ASSERT_OUTSIDE_BEGIN_END(ctx); 59 if (ctx->RenderMode==GL_FEEDBACK) { 60 _mesa_error( ctx, GL_INVALID_OPERATION, "glFeedbackBuffer" ); 64 _mesa_error( ctx, GL_INVALID_VALUE, "glFeedbackBuffer(size<0)" ); 68 _mesa_error( ctx, GL_INVALID_VALUE, "glFeedbackBuffer(buffer==NULL)" ); 69 ctx->Feedback.BufferSize = 0; 75 ctx->Feedback._Mask = 0; 78 ctx->Feedback._Mask = FB_3D; 81 ctx 120 _mesa_feedback_vertex(struct gl_context *ctx, const GLfloat win[4], const GLfloat color[4], const GLfloat texcoord[4]) argument 201 write_record(struct gl_context *ctx, GLuint value) argument 220 _mesa_update_hitflag(struct gl_context *ctx, GLfloat z) argument 244 write_hit_record(struct gl_context *ctx) argument [all...] |
H A D | lines.c | 43 GET_CURRENT_CONTEXT(ctx); 44 ASSERT_OUTSIDE_BEGIN_END(ctx); 47 _mesa_debug(ctx, "glLineWidth %f\n", width); 50 _mesa_error( ctx, GL_INVALID_VALUE, "glLineWidth" ); 64 if (ctx->API == API_OPENGL_CORE 65 && ((ctx->Const.ContextFlags & GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT) 67 _mesa_error( ctx, GL_INVALID_VALUE, "glLineWidth" ); 71 if (ctx->Line.Width == width) 74 FLUSH_VERTICES(ctx, _NEW_LINE); 75 ctx [all...] |
H A D | version.c | 36 override_version(struct gl_context *ctx) argument 54 ctx->Version = major * 10 + minor; 63 _mesa_override_glsl_version(struct gl_context *ctx) argument 74 n = sscanf(version, "%u", &ctx->Const.GLSLVersion); 85 compute_version(struct gl_context *ctx) argument 90 const GLboolean ver_1_3 = (ctx->Extensions.ARB_texture_border_clamp && 91 ctx->Extensions.ARB_texture_cube_map && 92 ctx->Extensions.ARB_texture_env_combine && 93 ctx->Extensions.ARB_texture_env_dot3); 95 ctx 240 compute_version_es1(struct gl_context *ctx) argument 272 compute_version_es2(struct gl_context *ctx) argument 309 _mesa_compute_version(struct gl_context *ctx) argument [all...] |
H A D | state.c | 57 update_separate_specular(struct gl_context *ctx) argument 59 if (_mesa_need_secondary_color(ctx)) 60 ctx->_TriangleCaps |= DD_SEPARATE_SPECULAR; 62 ctx->_TriangleCaps &= ~DD_SEPARATE_SPECULAR; 68 * ctx->VertexProgram._Enabled 69 * ctx->FragmentProgram._Enabled 70 * ctx->ATIFragmentShader._Enabled 74 update_program_enables(struct gl_context *ctx) argument 80 ctx->VertexProgram._Enabled = ctx 104 update_program(struct gl_context *ctx) argument 241 update_program_constants(struct gl_context *ctx) argument 278 update_viewport_matrix(struct gl_context *ctx) argument 300 update_multisample(struct gl_context *ctx) argument 314 update_clamp_fragment_color(struct gl_context *ctx) argument 328 update_clamp_vertex_color(struct gl_context *ctx) argument 342 update_clamp_read_color(struct gl_context *ctx) argument 355 update_twoside(struct gl_context *ctx) argument 372 update_polygon(struct gl_context *ctx) argument 618 _mesa_set_varying_vp_inputs( struct gl_context *ctx, GLbitfield64 varying_inputs ) argument 646 _mesa_set_vp_override(struct gl_context *ctx, GLboolean flag) argument [all...] |
/external/elfutils/src/libasm/ |
H A D | asm_abort.c | 42 asm_abort (ctx) 43 AsmCtx_t *ctx; 45 if (ctx == NULL) 49 if (likely (! ctx->textp)) 51 (void) elf_end (ctx->out.elf); 54 if (ctx->fd != -1) 55 (void) unlink (ctx->tmp_fname); 58 __libasm_finictx (ctx);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
H A D | vg_manager.h | 36 vg_manager_flush_frontbuffer(struct vg_context *ctx); 39 vg_manager_validate_framebuffer(struct vg_context *ctx);
|
/external/wpa_supplicant_8/hostapd/src/crypto/ |
H A D | aes-encblock.c | 25 void *ctx; local 26 ctx = aes_encrypt_init(key, 16); 27 if (ctx == NULL) 29 aes_encrypt(ctx, in, out); 30 aes_encrypt_deinit(ctx);
|
/external/wpa_supplicant_8/src/crypto/ |
H A D | aes-encblock.c | 25 void *ctx; local 26 ctx = aes_encrypt_init(key, 16); 27 if (ctx == NULL) 29 aes_encrypt(ctx, in, out); 30 aes_encrypt_deinit(ctx);
|
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/ |
H A D | aes-encblock.c | 25 void *ctx; local 26 ctx = aes_encrypt_init(key, 16); 27 if (ctx == NULL) 29 aes_encrypt(ctx, in, out); 30 aes_encrypt_deinit(ctx);
|
/external/emma/core/java12/com/vladium/emma/report/ |
H A D | AbstractItemVisitor.java | 20 public Object visit (final AllItem item, final Object ctx) argument 22 return ctx; 25 public Object visit (final PackageItem item, final Object ctx) argument 27 return ctx; 30 public Object visit (final SrcFileItem item, final Object ctx) argument 32 return ctx; 35 public Object visit (final ClassItem item, final Object ctx) argument 37 return ctx; 40 public Object visit (final MethodItem item, final Object ctx) argument 42 return ctx; [all...] |
/external/vboot_reference/firmware/2lib/include/ |
H A D | 2misc.h | 19 * @param ctx Vboot context 22 static __inline struct vb2_shared_data *vb2_get_sd(struct vb2_context *ctx) { argument 23 return (struct vb2_shared_data *)ctx->workbuf; 39 * @param ctx Vboot context 42 void vb2_workbuf_from_ctx(struct vb2_context *ctx, struct vb2_workbuf *wb); 47 * @param ctx Vboot context 51 int vb2_read_gbb_header(struct vb2_context *ctx, struct vb2_gbb_header *gbb); 65 void vb2_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode); 70 * This uses ctx->workbuf_used=0 as a flag to indicate that the data has not 74 * @param ctx Vboo [all...] |
/external/e2fsprogs/e2fsck/ |
H A D | e2fsck.c | 54 errcode_t e2fsck_reset_context(e2fsck_t ctx) argument 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 171 e2fsck_free_context(e2fsck_t ctx) argument 207 e2fsck_run(e2fsck_t ctx) argument [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
H A D | intel_extensions.c | 38 * Initializes potential list of extensions if ctx == NULL, or actually enables 42 intelInitExtensions(struct gl_context *ctx) argument 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 [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | intel_extensions.c | 38 * Initializes potential list of extensions if ctx == NULL, or actually enables 42 intelInitExtensions(struct gl_context *ctx) argument 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 [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
H A D | intel_extensions.c | 38 * Initializes potential list of extensions if ctx == NULL, or actually enables 42 intelInitExtensions(struct gl_context *ctx) argument 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 [all...] |