HomeSort by relevance Sort by last modified time
    Searched refs:intel (Results 1 - 25 of 501) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_batchbuffer.h 28 void intel_batchbuffer_init(struct intel_context *intel);
29 void intel_batchbuffer_reset(struct intel_context *intel);
30 void intel_batchbuffer_free(struct intel_context *intel);
31 void intel_batchbuffer_save_state(struct intel_context *intel);
32 void intel_batchbuffer_reset_to_saved(struct intel_context *intel);
34 int _intel_batchbuffer_flush(struct intel_context *intel,
37 #define intel_batchbuffer_flush(intel) \
38 _intel_batchbuffer_flush(intel, __FILE__, __LINE__)
46 void intel_batchbuffer_data(struct intel_context *intel,
49 bool intel_batchbuffer_emit_reloc(struct intel_context *intel,
    [all...]
intel_buffers.h 39 extern struct intel_region *intel_readbuf_region(struct intel_context *intel);
41 extern struct intel_region *intel_drawbuf_region(struct intel_context *intel);
43 extern void intel_check_front_buffer_rendering(struct intel_context *intel);
48 struct intel_context *intel = intel_context(ctx); local
50 intel->vtbl.update_draw_buffer(intel);
intel_buffers.c 41 intel_drawbuf_region(struct intel_context *intel)
44 intel_renderbuffer(intel->ctx.DrawBuffer->_ColorDrawBuffers[0]);
55 intel_readbuf_region(struct intel_context *intel)
58 = intel_renderbuffer(intel->ctx.ReadBuffer->_ColorReadBuffer);
67 * If so, set the intel->front_buffer_dirty field to true.
70 intel_check_front_buffer_rendering(struct intel_context *intel)
72 const struct gl_framebuffer *fb = intel->ctx.DrawBuffer;
77 intel->front_buffer_dirty = true;
87 struct intel_context *const intel = intel_context(ctx); local
89 intel->is_front_buffer_rendering
110 struct intel_context *const intel = intel_context(ctx); local
    [all...]
intel_batchbuffer.c 41 static void clear_cache( struct intel_context *intel )
43 struct cached_batch_item *item = intel->batch.cached_items;
51 intel->batch.cached_items = NULL;
55 intel_batchbuffer_init(struct intel_context *intel)
57 intel_batchbuffer_reset(intel);
59 if (intel->gen >= 6) {
64 intel->batch.workaround_bo = drm_intel_bo_alloc(intel->bufmgr,
71 intel_batchbuffer_reset(struct intel_context *intel)
73 if (intel->batch.last_bo != NULL)
    [all...]
intel_context.c 69 const struct intel_context *const intel = intel_context(ctx); local
75 return (GLubyte *) "Intel Open Source Technology Center";
79 switch (intel->intelScreen->deviceID) {
81 chipset = "Intel(R) 845G";
84 chipset = "Intel(R) 830M";
87 chipset = "Intel(R) 852GM/855GM";
90 chipset = "Intel(R) 865G";
93 chipset = "Intel(R) 915G";
96 chipset = "Intel (R) E7221G (i915)";
99 chipset = "Intel(R) 915GM"
277 struct intel_context *intel = intel_context(ctx); local
331 struct intel_context *intel = context->driverPrivate; local
453 struct intel_context *intel = intel_context(ctx); local
501 struct intel_context *intel = intel_context(ctx); local
516 struct intel_context *intel = intel_context(ctx); local
528 struct intel_context *intel = intel_context(ctx); local
539 struct intel_context *intel = intel_context(ctx); local
550 struct intel_context *intel = intel_context(ctx); local
794 struct intel_context *intel = local
857 struct intel_context *intel; local
    [all...]
intel_buffer_objects.c 48 intel_bufferobj_alloc_buffer(struct intel_context *intel,
51 intel_obj->buffer = drm_intel_bo_alloc(intel->bufmgr, "bufferobj",
122 struct intel_context *intel = intel_context(ctx); local
156 intel_bufferobj_alloc_buffer(intel, intel_obj);
180 struct intel_context *intel = intel_context(ctx); local
206 drm_intel_bo_references(intel->batch.bo, intel_obj->buffer);
212 intel_bufferobj_alloc_buffer(intel, intel_obj);
218 drm_intel_bo_alloc(intel->bufmgr, "subdata temp", size, 64);
222 intel_emit_linear_blit(intel,
250 struct intel_context *intel = intel_context(ctx) local
286 struct intel_context *intel = intel_context(ctx); local
389 struct intel_context *intel = intel_context(ctx); local
421 struct intel_context *intel = intel_context(ctx); local
642 struct intel_context *intel = intel_context(ctx); local
728 struct intel_context *intel = intel_context(ctx); local
740 struct intel_texture_object *intel; local
757 struct intel_renderbuffer *intel; local
797 struct intel_texture_object *intel; local
814 struct intel_renderbuffer *intel; local
    [all...]
intel_buffer_objects.h 38 * Intel vertex/pixel buffer object, derived from Mesa's gl_buffer_object.
60 drm_intel_bo *intel_bufferobj_buffer(struct intel_context *intel,
63 drm_intel_bo *intel_bufferobj_source(struct intel_context *intel,
68 void intel_upload_data(struct intel_context *intel,
73 void *intel_upload_map(struct intel_context *intel,
75 void intel_upload_unmap(struct intel_context *intel,
80 void intel_upload_finish(struct intel_context *intel);
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_tris.h 47 void intel_set_prim(struct intel_context *intel, uint32_t prim);
48 GLuint *intel_get_prim_space(struct intel_context *intel, unsigned int count);
49 void intel_flush_prim(struct intel_context *intel);
50 void intel_finish_vb(struct intel_context *intel);
intel_render.c 58 * be adjusted for points on the INTEL/I845G
113 intelDmaPrimitive(struct intel_context *intel, GLenum prim)
117 INTEL_FIREVERTICES(intel);
118 intel->vtbl.reduced_primitive_state(intel, reduced_prim[prim]);
119 intel_set_prim(intel, hw_prim[prim]);
124 static INLINE GLuint intel_get_vb_max(struct intel_context *intel)
128 if (intel->intelScreen->no_vbo) {
129 ret = intel->batch.bo->size - INTEL_NO_VBO_STATE_RESERVED;
132 ret /= (intel->vertex_size * 4)
227 struct intel_context *intel = intel_context(ctx); local
    [all...]
intel_tris.c 65 intel_flush_inline_primitive(struct intel_context *intel)
67 GLuint used = intel->batch.used - intel->prim.start_ptr;
69 assert(intel->prim.primitive != ~0);
76 intel->batch.map[intel->prim.start_ptr] =
77 _3DPRIMITIVE | intel->prim.primitive | (used - 2);
82 intel->batch.used = intel->prim.start_ptr;
85 intel->prim.primitive = ~0
895 struct intel_context *intel = intel_context(ctx); local
927 struct intel_context *intel = intel_context(ctx); local
955 struct intel_context *intel = intel_context(ctx); local
1057 struct intel_context *intel = intel_context(ctx); local
1096 struct intel_context *intel = intel_context(ctx); local
1106 struct intel_context *intel = intel_context(ctx); local
1123 struct intel_context *intel = intel_context(ctx); local
1146 struct intel_context *intel = intel_context(ctx); local
    [all...]
i830_context.c 58 struct intel_context *intel = &i830->intel; local
59 struct gl_context *ctx = &intel->ctx;
66 if (!intelInitContext(intel, __DRI_API_OPENGL, mesaVis, driContextPriv,
74 _math_matrix_ctr(&intel->ViewportMatrix);
84 if (intel->no_rast)
85 FALLBACK(intel, INTEL_FALLBACK_USER, 1);
87 intel->ctx.Const.MaxTextureUnits = I830_TEX_UNITS;
88 intel->ctx.Const.MaxTextureImageUnits = I830_TEX_UNITS;
89 intel->ctx.Const.MaxTextureCoordUnits = I830_TEX_UNITS
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_tex.c 2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
48 struct gl_context *ctx = &brw->intel.ctx;
49 struct intel_context *intel = &brw->intel; local
56 intel_finalize_mipmap_tree(intel, i);
brw_vtbl.c 2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
68 static void brw_destroy_context( struct intel_context *intel )
70 struct brw_context *brw = brw_context(&intel->ctx);
84 drm_intel_gem_context_destroy(intel->hw_ctx);
98 brw_update_draw_buffer(struct intel_context *intel)
100 struct gl_context *ctx = &intel->ctx;
131 intel->NewGLState |= (_NEW_DEPTH | _NEW_STENCIL);
136 intel->NewGLState |= _NEW_BUFFERS;
139 intel->NewGLState |= _NEW_VIEWPORT | _NEW_SCISSOR
    [all...]
gen6_multisample_state.c 2 * Copyright © 2012 Intel Corporation
37 struct intel_context *intel = &brw->intel; local
102 int len = intel->gen >= 7 ? 4 : 3;
107 if (intel->gen >= 7)
121 struct intel_context *intel = &brw->intel; local
140 struct intel_context *intel = &brw->intel; local
141 struct gl_context *ctx = &intel->ctx
    [all...]
gen7_cc_state.c 2 * Copyright © 2011 Intel Corporation
34 struct intel_context *intel = &brw->intel; local
54 struct intel_context *intel = &brw->intel; local
74 struct intel_context *intel = &brw->intel; local
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
GrallocSubBuffer.h 2 // Copyright (c) 2014 Intel Corporation 
21 namespace intel { namespace in namespace:android
30 } // namespace intel
DrmControl.h 2 // Copyright (c) 2014 Intel Corporation 
21 namespace intel { namespace in namespace:android
35 } // namespace intel
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
GrallocSubBuffer.h 2 // Copyright (c) 2014 Intel Corporation 
21 namespace intel { namespace in namespace:android
30 } // namespace intel
DrmControl.h 2 // Copyright (c) 2014 Intel Corporation 
21 namespace intel { namespace in namespace:android
35 } // namespace intel
  /device/asus/fugu/self-extractors/intel/staging/
device-partial.mk 15 # Intel blob(s) necessary for Fugu hardware
17 vendor/intel/fugu/proprietary/houdini:system/bin/houdini:intel \
18 vendor/intel/fugu/proprietary/arm_dyn:system/etc/binfmt_misc/arm_dyn:intel \
19 vendor/intel/fugu/proprietary/arm_exe:system/etc/binfmt_misc/arm_exe:intel \
20 vendor/intel/fugu/proprietary/disable:system/etc/binfmt_misc/disable:intel \
21 vendor/intel/fugu/proprietary/msvdx.bin.0008.0000.0000:system/etc/firmware/msvdx.bin.0008.0000.0000:intel
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/include/
IBlankControl.h 2 // Copyright (c) 2014 Intel Corporation 
20 namespace intel { namespace in namespace:android
30 } // namespace intel
IPrepareListener.h 2 // Copyright (c) 2014 Intel Corporation 
20 namespace intel { namespace in namespace:android
30 } // namespace intel
  /hardware/intel/img/hwcomposer/moorefield_hdmi/include/
IBlankControl.h 2 // Copyright (c) 2014 Intel Corporation 
20 namespace intel { namespace in namespace:android
30 } // namespace intel
  /device/asus/fugu/
AndroidBoard.mk 21 -include vendor/intel/prebuilts/$(TARGET_PRODUCT)/prebuilts.mk
  /hardware/intel/img/hwcomposer/merrifield/common/utils/
Dump.h 2 // Copyright (c) 2014 Intel Corporation 
20 namespace intel { namespace in namespace:android
33 } // namespace intel

Completed in 325 milliseconds

1 2 3 4 5 6 7 8 91011>>