Searched defs:needs (Results 1 - 7 of 7) sorted by last modified time

/system/core/include/private/pixelflinger/
H A Dggl_context.h521 needs_t needs; member in struct:android::state_t
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp62 int GGLAssembler::scanline(const needs_t& needs, context_t const* c) argument
68 err = scanline_core(needs, c);
83 needs.p, needs.n, needs.t[0], needs.t[1], per_fragment_ops);
94 int GGLAssembler::scanline_core(const needs_t& needs, context_t const* c) argument
101 mAA = GGL_READ_NEEDS(P_AA, needs.p);
102 mDithering = GGL_READ_NEEDS(P_DITHER, needs.p);
103 mAlphaTest = GGL_READ_NEEDS(P_ALPHA_TEST, needs
351 build_scanline_prolog( fragment_parts_t& parts, const needs_t& needs) argument
727 const needs_t& needs = mBuilderContext.needs; local
790 const needs_t& needs = mBuilderContext.needs; local
801 const needs_t& needs = mBuilderContext.needs; local
817 const needs_t& needs = mBuilderContext.needs; local
961 const needs_t& needs = mBuilderContext.needs; local
[all...]
H A DGGLAssembler.h185 // generate scanline code for given needs
186 int scanline(const needs_t& needs, context_t const* c);
187 int scanline_core(const needs_t& needs, context_t const* c);
341 needs_t needs; member in struct:android::GGLAssembler::builder_context_t
403 const needs_t& needs);
427 void decodeLogicOpNeeds(const needs_t& needs);
429 void decodeTMUNeeds(const needs_t& needs, context_t const* c);
H A Dload_store.cpp250 const needs_t& needs = mBuilderContext.needs; local
H A Dtexturing.cpp46 const needs_t& needs = mBuilderContext.needs; local
232 void GGLAssembler::decodeLogicOpNeeds(const needs_t& needs) argument
235 const int opcode = GGL_READ_NEEDS(LOGIC_OP, needs.n) | GGL_CLEAR;
266 void GGLAssembler::decodeTMUNeeds(const needs_t& needs, context_t const* c) argument
280 tmu.format_idx = GGL_READ_NEEDS(T_FORMAT, needs.t[i]);
283 tmu.swrap = GGL_READ_NEEDS(T_S_WRAP, needs.t[i]);
284 tmu.twrap = GGL_READ_NEEDS(T_T_WRAP, needs.t[i]);
285 tmu.env = ggl_needs_to_env(GGL_READ_NEEDS(T_ENV, needs.t[i]));
286 tmu.pot = GGL_READ_NEEDS(T_POT, needs
330 const needs_t& needs = mBuilderContext.needs; local
408 const needs_t& needs = mBuilderContext.needs; local
[all...]
/system/core/libpixelflinger/
H A Dscanline.cpp145 // Keep in sync with needs
286 ScanlineAssembly(needs_t needs, size_t size) argument
287 : Assembly(size), mKey(needs) { }
324 //printf("*** needs [%08lx:%08lx:%08lx:%08lx]\n",
325 // c->state.needs.n, c->state.needs.p,
326 // c->state.needs.t[0], c->state.needs.t[1]);
329 const uint32_t cb_format = GGL_READ_NEEDS(CB_FORMAT, c->state.needs.n);
330 if (GGL_READ_NEEDS(T_FORMAT, c->state.needs
[all...]
/system/core/libpixelflinger/tests/codegen/
H A Dcodegen.cpp31 ScanlineAssembly(needs_t needs, size_t size) argument
32 : Assembly(size), mKey(needs) { }
41 needs_t needs; local
42 needs.n = n;
43 needs.p = p;
44 needs.t[0] = t0;
45 needs.t[1] = t1;
46 sp<ScanlineAssembly> a(new ScanlineAssembly(needs, ASSEMBLY_SCRATCH_SIZE));
56 int err = assembler.scanline(needs, (context_t*)c);

Completed in 201 milliseconds