/frameworks/base/opengl/libagl/ |
H A D | state.cpp | 73 ggl_init_context(&(c->rasterizer)); 90 c->rasterizer.base = base; 95 c->rasterizer.procs.depthMask(c, 1); 98 c->rasterizer.procs.enable(c, GL_DITHER); 112 ggl_uninit_context(&(c->rasterizer)); 113 free(c->rasterizer.base); 191 // these need to fall through into the rasterizer 192 c->rasterizer.procs.enableDisable(c, cap, enabled); 287 c->rasterizer.procs.enableDisable(c, 330 if (c->rasterizer [all...] |
H A D | texture.cpp | 80 c->rasterizer.procs.activeTexture(c, i); 81 c->rasterizer.procs.bindTexture(c, &(u.texture->surface)); 82 c->rasterizer.procs.texGeni(c, GGL_S, 84 c->rasterizer.procs.texGeni(c, GGL_T, 86 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D, 88 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D, 90 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D, 92 c->rasterizer.procs.texParameteri(c, GGL_TEXTURE_2D, 97 c->rasterizer.procs.disable(c, GGL_TEXTURE_2D); 105 if (c->rasterizer [all...] |
H A D | primitives.cpp | 105 // 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 D | egl.cpp | 125 return static_cast<egl_context_t*>(gl->rasterizer.base); 633 gl->rasterizer.procs.colorBuffer(gl, &buffer); 634 if (depth.data != gl->rasterizer.state.buffers.depth.data) 635 gl->rasterizer.procs.depthBuffer(gl, &depth); 648 gl->rasterizer.procs.readBuffer(gl, &buffer); 725 gl->rasterizer.procs.colorBuffer(gl, &buffer); 726 if (depth.data != gl->rasterizer.state.buffers.depth.data) 727 gl->rasterizer.procs.depthBuffer(gl, &depth); 739 gl->rasterizer.procs.readBuffer(gl, &buffer); 801 gl->rasterizer [all...] |
H A D | array.cpp | 1054 if (c->rasterizer.state.texture[i].enable) 1082 uint32_t enables = c->rasterizer.state.enables; 1091 c->rasterizer.procs.enableDisable(c, GGL_W_LERP, perspective); 1106 c->rasterizer.procs.enableDisable(c, GGL_AA, smooth); 1109 c->rasterizer.procs.shadeModel(c, 1184 if (c->rasterizer.state.texture[i].enable) { 1207 enables = c->rasterizer.state.enables; 1220 // pick the primitive rasterizer 1370 const uint32_t enables = c->rasterizer.state.enables; 1430 const uint32_t enables = c->rasterizer [all...] |
H A D | mipmap.cpp | 34 const GGLFormat& pixelFormat(c->rasterizer.formats[base->format]);
|
H A D | vertex.cpp | 137 perspective(c, v, c->rasterizer.state.enables);
|
H A D | light.cpp | 104 c->rasterizer.procs.shadeModel(c, GL_SMOOTH); 865 c->rasterizer.procs.fogColor3xv(c, paramsx); 875 c->rasterizer.procs.fogColor3xv(c, params);
|
H A D | matrix.cpp | 98 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;
|
/frameworks/base/graphics/java/android/graphics/ |
H A D | Paint.java | 759 * Get the paint's rasterizer (or null). 763 * @return the paint's rasterizer (or null) 770 * Set or clear the rasterizer object. 772 * Pass null to clear any previous rasterizer. 775 * @param rasterizer May be null. The new rasterizer to be installed in 777 * @return rasterizer 779 public Rasterizer setRasterizer(Rasterizer rasterizer) { argument 781 if (rasterizer != null) { 782 rasterizerNative = rasterizer 1394 native_setRasterizer(int native_object, int rasterizer) argument [all...] |
/frameworks/base/include/ui/ |
H A D | Region.h | 130 class rasterizer; 131 friend class rasterizer;
|
/frameworks/base/libs/ui/ |
H A D | Region.cpp | 235 // This is our region rasterizer, which merges rects and spans together 237 class Region::rasterizer : public region_operator<Rect>::region_rasterizer 246 rasterizer(Region& reg) 254 ~rasterizer() { 378 { // scope for rasterizer (dtor has side effects) 379 rasterizer r(dst); 481 { // scope for rasterizer (dtor has side effects) 482 rasterizer r(dst);
|
/frameworks/base/include/private/ui/ |
H A D | RegionHelper.h | 74 void operator()(region_rasterizer& rasterizer) { argument 86 rasterizer(current);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
H A D | Paint_Delegate.java | 841 /*package*/ static int native_setRasterizer(int native_object, int rasterizer) { argument 845 return rasterizer; 848 delegate.mRasterizer = Rasterizer_Delegate.getDelegate(rasterizer); 856 return rasterizer;
|
/frameworks/base/core/jni/android/graphics/ |
H A D | Paint.cpp | 227 static SkRasterizer* setRasterizer(JNIEnv* env, jobject clazz, SkPaint* obj, SkRasterizer* rasterizer) { argument 228 return obj->setRasterizer(rasterizer);
|
/frameworks/base/include/private/opengles/ |
H A D | gl_context.h | 616 context_t rasterizer; member in struct:android::gl::ogles_context_t
|