Searched refs:context_t (Results 1 – 18 of 18) sorted by relevance
/system/core/libpixelflinger/ |
D | buffer.h | 26 void ggl_init_texture(context_t* c); 28 void ggl_set_surface(context_t* c, surface_t* dst, const GGLSurface* src); 30 void ggl_pick_texture(context_t* c); 31 void ggl_pick_cb(context_t* c); 34 uint32_t ggl_pack_color(context_t* c, int32_t format,
|
D | scanline.h | 26 void ggl_init_scanline(context_t* c); 27 void ggl_uninit_scanline(context_t* c); 28 void ggl_pick_scanline(context_t* c);
|
D | pixelflinger.cpp | 57 static void ggl_init_procs(context_t* c); 58 static void ggl_set_scissor(context_t* c); 60 static void ggl_enable_blending(context_t* c, int enable); 61 static void ggl_enable_scissor_test(context_t* c, int enable); 62 static void ggl_enable_alpha_test(context_t* c, int enable); 63 static void ggl_enable_logic_op(context_t* c, int enable); 64 static void ggl_enable_dither(context_t* c, int enable); 65 static void ggl_enable_stencil_test(context_t* c, int enable); 66 static void ggl_enable_depth_test(context_t* c, int enable); 67 static void ggl_enable_aa(context_t* c, int enable); [all …]
|
D | scanline.cpp | 85 static void init_y(context_t*, int32_t); 86 static void init_y_noop(context_t*, int32_t); 87 static void init_y_packed(context_t*, int32_t); 88 static void init_y_error(context_t*, int32_t); 90 static void step_y__generic(context_t* c); 91 static void step_y__nop(context_t*); 92 static void step_y__smooth(context_t* c); 93 static void step_y__tmu(context_t* c); 94 static void step_y__w(context_t* c); 96 static void scanline(context_t* c); [all …]
|
D | picker.h | 26 void ggl_init_picker(context_t* c); 27 void ggl_pick(context_t* c);
|
D | trap.h | 26 void ggl_init_trap(context_t* c); 27 void ggl_state_changed(context_t* c, int flags);
|
D | buffer.cpp | 28 static void read_pixel(const surface_t* s, context_t* c, 30 static void write_pixel(const surface_t* s, context_t* c, 32 static void readRGB565(const surface_t* s, context_t* c, 34 static void readABGR8888(const surface_t* s, context_t* c, 45 void ggl_init_texture(context_t* c) in ggl_init_texture() 60 void ggl_set_surface(context_t* c, surface_t* dst, const GGLSurface* src) in ggl_set_surface() 86 void ggl_pick_texture(context_t* c) in ggl_pick_texture() 102 void ggl_pick_cb(context_t* c) in ggl_pick_cb() 113 void read_pixel(const surface_t* s, context_t* c, in read_pixel() 135 void readRGB565(const surface_t* s, context_t* /*c*/, in readRGB565() argument [all …]
|
D | clear.h | 26 void ggl_init_clear(context_t* c);
|
D | raster.h | 26 void ggl_init_raster(context_t* c);
|
D | clear.cpp | 35 void ggl_init_clear(context_t* c) in ggl_init_clear() 50 static void memset2d(context_t* c, const surface_t& s, uint32_t packed, in memset2d()
|
D | picker.cpp | 29 void ggl_init_picker(context_t* /*c*/) in ggl_init_picker() argument 33 void ggl_pick(context_t* c) in ggl_pick()
|
D | trap.cpp | 116 void ggl_init_trap(context_t* c) in ggl_init_trap() 121 void ggl_state_changed(context_t* c, int flags) in ggl_state_changed() 449 static void scanline_set(context_t* c) in scanline_set() 471 void (*save_scanline)(context_t*) = c->scanline; in trianglex_debug() 723 context_t* c ) in triangle_sweep_edges()
|
D | raster.cpp | 32 void ggl_init_raster(context_t* c) in ggl_init_raster()
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_context.h | 123 #define GGL_CONTEXT(con, c) context_t *(con) = static_cast<context_t *>(c) /* NOLINT */ 124 #define GGL_OFFSETOF(field) uintptr_t(&(((context_t*)0)->field)) 274 struct context_t; 357 void (*read) (const surface_t* s, context_t* c, 359 void (*write)(const surface_t* s, context_t* c, 528 struct context_t { 542 void (*init_y)(context_t* c, int32_t y); 543 void (*step_y)(context_t* c); 544 void (*scanline)(context_t* c); 545 void (*span)(context_t* c); [all …]
|
/system/core/libpixelflinger/tests/codegen/ |
D | codegen.cpp | 71 int err = assembler.scanline(needs, (context_t*)c); in ggl_test_codegen()
|
/system/core/libpixelflinger/codeflinger/ |
D | GGLAssembler.h | 192 int scanline(const needs_t& needs, context_t const* c); 193 int scanline_core(const needs_t& needs, context_t const* c); 354 context_t const* c; 443 void decodeTMUNeeds(const needs_t& needs, context_t const* c);
|
D | GGLAssembler.cpp | 63 int GGLAssembler::scanline(const needs_t& needs, context_t const* c) in scanline() 95 int GGLAssembler::scanline_core(const needs_t& needs, context_t const* c) in scanline_core()
|
D | texturing.cpp | 43 context_t const* c = mBuilderContext.c; in init_iterated_color() 263 void GGLAssembler::decodeTMUNeeds(const needs_t& needs, context_t const* c) in decodeTMUNeeds()
|