/system/core/libpixelflinger/tests/codegen/ |
D | codegen.cpp | 36 ScanlineAssembly(needs_t needs, size_t size) in ScanlineAssembly() argument 37 : Assembly(size), mKey(needs) { } in ScanlineAssembly() 46 needs_t needs; in ggl_test_codegen() local 47 needs.n = n; in ggl_test_codegen() 48 needs.p = p; in ggl_test_codegen() 49 needs.t[0] = t0; in ggl_test_codegen() 50 needs.t[1] = t1; in ggl_test_codegen() 51 sp<ScanlineAssembly> a(new ScanlineAssembly(needs, ASSEMBLY_SCRATCH_SIZE)); in ggl_test_codegen() 65 int err = assembler.scanline(needs, (context_t*)c); in ggl_test_codegen()
|
/system/core/libpixelflinger/codeflinger/ |
D | GGLAssembler.cpp | 62 int GGLAssembler::scanline(const needs_t& needs, context_t const* c) in scanline() argument 68 err = scanline_core(needs, c); in scanline() 83 needs.p, needs.n, needs.t[0], needs.t[1], per_fragment_ops); in scanline() 94 int GGLAssembler::scanline_core(const needs_t& needs, context_t const* c) in scanline_core() argument 101 mAA = GGL_READ_NEEDS(P_AA, needs.p); in scanline_core() 102 mDithering = GGL_READ_NEEDS(P_DITHER, needs.p); in scanline_core() 103 mAlphaTest = GGL_READ_NEEDS(P_ALPHA_TEST, needs.p) + GGL_NEVER; in scanline_core() 104 mDepthTest = GGL_READ_NEEDS(P_DEPTH_TEST, needs.p) + GGL_NEVER; in scanline_core() 105 mFog = GGL_READ_NEEDS(P_FOG, needs.p) != 0; in scanline_core() 106 mSmooth = GGL_READ_NEEDS(SHADE, needs.n) != 0; in scanline_core() [all …]
|
D | texturing.cpp | 42 const needs_t& needs = mBuilderContext.needs; in init_iterated_color() local 228 void GGLAssembler::decodeLogicOpNeeds(const needs_t& needs) in decodeLogicOpNeeds() argument 231 const int opcode = GGL_READ_NEEDS(LOGIC_OP, needs.n) | GGL_CLEAR; in decodeLogicOpNeeds() 262 void GGLAssembler::decodeTMUNeeds(const needs_t& needs, context_t const* c) in decodeTMUNeeds() argument 276 tmu.format_idx = GGL_READ_NEEDS(T_FORMAT, needs.t[i]); in decodeTMUNeeds() 279 tmu.swrap = GGL_READ_NEEDS(T_S_WRAP, needs.t[i]); in decodeTMUNeeds() 280 tmu.twrap = GGL_READ_NEEDS(T_T_WRAP, needs.t[i]); in decodeTMUNeeds() 281 tmu.env = ggl_needs_to_env(GGL_READ_NEEDS(T_ENV, needs.t[i])); in decodeTMUNeeds() 282 tmu.pot = GGL_READ_NEEDS(T_POT, needs.t[i]); in decodeTMUNeeds() 283 tmu.linear = GGL_READ_NEEDS(T_LINEAR, needs.t[i]) in decodeTMUNeeds() [all …]
|
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); 347 needs_t needs; member 409 const needs_t& needs); 433 void decodeLogicOpNeeds(const needs_t& needs); 435 void decodeTMUNeeds(const needs_t& needs, context_t const* c);
|
D | load_store.cpp | 231 const needs_t& needs = mBuilderContext.needs; in downshift() local
|
/system/core/libpixelflinger/ |
D | picker.cpp | 40 needs_t new_needs(c->state.needs); in ggl_pick() 162 if (new_needs != c->state.needs) { in ggl_pick() 163 c->state.needs = new_needs; in ggl_pick()
|
D | scanline.cpp | 300 ScanlineAssembly(needs_t needs, size_t size) in ScanlineAssembly() argument 301 : Assembly(size), mKey(needs) { } in ScanlineAssembly() 343 const uint32_t cb_format = GGL_READ_NEEDS(CB_FORMAT, c->state.needs.n); in pick_scanline() 344 if (GGL_READ_NEEDS(T_FORMAT, c->state.needs.t[0]) == cb_format) { in pick_scanline() 345 if (c->state.needs.match(noblend1to1)) { in pick_scanline() 350 &(c->formats[GGL_READ_NEEDS(T_FORMAT, c->state.needs.t[0])]); in pick_scanline() 365 if (c->state.needs.match(fill16noblend)) { in pick_scanline() 376 if (c->state.needs.match(shortcuts[i].filter)) { in pick_scanline() 385 c->state.needs.n, c->state.needs.p, in pick_scanline() 386 c->state.needs.t[0], c->state.needs.t[1]); in pick_scanline() [all …]
|
D | trap.cpp | 140 if (c->state.needs.p & GGL_NEED_MASK(P_AA)) { in pointx_validate() 340 if (c->state.needs.p & GGL_NEED_MASK(P_AA)) { in linex_validate() 466 if (c->state.needs.p & GGL_NEED_MASK(P_AA)) { in trianglex_debug() 497 if (c->state.needs.p & GGL_NEED_MASK(P_AA)) { in trianglex_validate()
|
/system/media/camera/docs/ |
D | camera_metadata_tags.mako | 42 /** TODO: Nearly every enum in this file needs a description */ 73 * addition, the name and type of the tag needs to be added to
|
/system/bt/doc/ |
D | style_guide.md | 31 The one exception is if an integer needs to be temporarily converted to a 115 Use C99 flexible arrays as the last member of a struct if the array needs
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_context.h | 523 needs_t needs;
|
/system/core/adb/ |
D | protocol.txt | 18 that if it needs to be reimplemented in another environment (Java
|