Searched refs:rasterizer (Results 1 - 16 of 16) sorted by relevance

/frameworks/native/opengl/libagl/
H A Dstate.cpp74 ggl_init_context(&(c->rasterizer));
91 c->rasterizer.base = base;
96 c->rasterizer.procs.depthMask(c, 1);
99 c->rasterizer.procs.enable(c, GL_DITHER);
113 ggl_uninit_context(&(c->rasterizer));
114 free(c->rasterizer.base);
192 // these need to fall through into the rasterizer
193 c->rasterizer.procs.enableDisable(c, cap, enabled);
196 c->rasterizer.procs.enableDisable(c, GL_TEXTURE_2D, enabled);
291 c->rasterizer
[all...]
H A Dtexture.cpp79 c->rasterizer.procs.activeTexture(c, i);
80 c->rasterizer.procs.bindTexture(c, &(u.texture->surface));
81 c->rasterizer.procs.texGeni(c, GGL_S,
83 c->rasterizer.procs.texGeni(c, GGL_T,
85 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
87 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
89 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
91 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D,
96 c->rasterizer.procs.disable(c, GGL_TEXTURE_2D);
104 if (c->rasterizer
[all...]
H A Dprimitives.cpp105 // configure the rasterizer here, before we clip
106 c->rasterizer.procs.color4xv(c, v2->color.v);
125 // configure the rasterizer here, before we clip
126 c->rasterizer.procs.color4xv(c, v2->color.v);
173 // configure the rasterizer here, before we clip
174 c->rasterizer.procs.color4xv(c, v2->color.v);
191 // configure the rasterizer here, before we clip
192 c->rasterizer.procs.color4xv(c, v2->color.v);
214 const uint32_t enables = c->rasterizer.state.enables;
397 if (!(c->rasterizer
[all...]
H A Degl.cpp133 return static_cast<egl_context_t*>(gl->rasterizer.base);
593 gl->rasterizer.procs.colorBuffer(gl, &buffer);
594 if (depth.data != gl->rasterizer.state.buffers.depth.data)
595 gl->rasterizer.procs.depthBuffer(gl, &depth);
608 gl->rasterizer.procs.readBuffer(gl, &buffer);
685 gl->rasterizer.procs.colorBuffer(gl, &buffer);
686 if (depth.data != gl->rasterizer.state.buffers.depth.data)
687 gl->rasterizer.procs.depthBuffer(gl, &depth);
699 gl->rasterizer.procs.readBuffer(gl, &buffer);
761 gl->rasterizer
[all...]
H A Darray.cpp1058 if (c->rasterizer.state.texture[i].enable)
1086 uint32_t enables = c->rasterizer.state.enables;
1095 c->rasterizer.procs.enableDisable(c, GGL_W_LERP, perspective);
1110 c->rasterizer.procs.enableDisable(c, GGL_AA, smooth);
1113 c->rasterizer.procs.shadeModel(c,
1188 if (c->rasterizer.state.texture[i].enable) {
1211 enables = c->rasterizer.state.enables;
1224 // pick the primitive rasterizer
1374 const uint32_t enables = c->rasterizer.state.enables;
1434 const uint32_t enables = c->rasterizer
[all...]
H A Dmipmap.cpp34 const GGLFormat& pixelFormat(c->rasterizer.formats[base->format]);
H A Dvertex.cpp137 perspective(c, v, c->rasterizer.state.enables);
H A Dlight.cpp104 c->rasterizer.procs.shadeModel(c, GL_SMOOTH);
872 c->rasterizer.procs.fogColor3xv(c, paramsx);
882 c->rasterizer.procs.fogColor3xv(c, params);
H A Dmatrix.cpp98 const uint32_t enables = c->rasterizer.state.enables;
676 y = c->rasterizer.state.buffers.color.height - (y + h);
677 c->rasterizer.procs.scissor(c, x, y, w, h);
696 GLint H = c->rasterizer.state.buffers.color.height;
H A Dcontext.h609 context_t rasterizer; member in struct:android::gl::ogles_context_t
/frameworks/native/include/ui/
H A DRegion.h150 class rasterizer;
151 friend class rasterizer;
/frameworks/native/include/private/ui/
H A DRegionHelper.h74 void operator()(region_rasterizer& rasterizer) { argument
86 rasterizer(current);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1072 * Get the paint's rasterizer (or null).
1076 * @return the paint's rasterizer (or null)
1086 * Set or clear the rasterizer object.
1088 * Pass null to clear any previous rasterizer.
1091 * @param rasterizer May be null. The new rasterizer to be installed in
1093 * @return rasterizer
1098 public Rasterizer setRasterizer(Rasterizer rasterizer) { argument
1100 if (rasterizer != null) {
1101 rasterizerNative = rasterizer
2251 native_setRasterizer(long native_object, long rasterizer) argument
[all...]
/frameworks/native/libs/ui/
H A DRegion.cpp405 // This is our region rasterizer, which merges rects and spans together
407 class Region::rasterizer : public region_operator<Rect>::region_rasterizer class in class:android::Region
416 rasterizer(Region& reg) function in class:android::Region::rasterizer
421 ~rasterizer() {
578 { // scope for rasterizer (dtor has side effects)
579 rasterizer r(dst);
688 { // scope for rasterizer (dtor has side effects)
689 rasterizer r(dst);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java902 /*package*/ static long native_setRasterizer(long native_object, long rasterizer) { argument
906 return rasterizer;
909 delegate.mRasterizer = Rasterizer_Delegate.getDelegate(rasterizer);
917 return rasterizer;
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp307 SkAutoTUnref<SkRasterizer> rasterizer(GraphicsJNI::refNativeRasterizer(rasterizerHandle));
308 return reinterpret_cast<jlong>(obj->setRasterizer(rasterizer));

Completed in 661 milliseconds