HomeSort by relevance Sort by last modified time
    Searched refs:GrGpu (Results 51 - 75 of 114) sorted by null

1 23 4 5

  /external/chromium_org/third_party/skia/src/gpu/
GrStencilBuffer.h 56 GrStencilBuffer(GrGpu* gpu, bool isWrapped, int width, int height, int bits, int sampleCnt)
GrPathRendererChain.cpp 15 #include "GrGpu.h"
80 GrGpu* gpu = fOwner->getGpu();
GrOptDrawState.cpp 12 #include "GrGpu.h"
71 fDstBlend = (GrBlendCoeff)GrGpu::kIS2C_GrBlendCoeff;
76 fDstBlend = (GrBlendCoeff)GrGpu::kIS2C_GrBlendCoeff;
81 fDstBlend = (GrBlendCoeff)GrGpu::kIS2C_GrBlendCoeff;
GrTexture.cpp 14 #include "GrGpu.h"
169 GrResourceKey::ResourceFlags get_texture_flags(const GrGpu* gpu,
210 GrTextureImpl::GrTextureImpl(GrGpu* gpu, bool isWrapped, const GrTextureDesc& desc)
216 GrResourceKey GrTextureImpl::ComputeKey(const GrGpu* gpu,
GrClipMaskManager.cpp 14 #include "GrGpu.h"
37 void setup_drawstate_aaclip(GrGpu* gpu,
64 GrGpu* gpu,
752 drawState->disableState(GrGpu::kModifyStencilClip_StateBit);
    [all...]
GrAARectRenderer.cpp 9 #include "GrGpu.h"
328 GrIndexBuffer* GrAARectRenderer::aaFillRectIndexBuffer(GrGpu* gpu) {
443 GrIndexBuffer* GrAARectRenderer::aaStrokeRectIndexBuffer(GrGpu* gpu, bool miterStroke) {
475 void GrAARectRenderer::geometryFillAARect(GrGpu* gpu,
633 void GrAARectRenderer::shaderFillAARect(GrGpu* gpu,
695 void GrAARectRenderer::shaderFillAlignedAARect(GrGpu* gpu,
752 void GrAARectRenderer::strokeAARect(GrGpu* gpu,
    [all...]
GrInOrderDrawBuffer.h 25 class GrGpu;
31 * playback into a GrGpu. In theory one draw buffer could playback into another. When index or
34 * valid when the draw buffer is played back into a GrGpu. Similarly, it is the caller's
36 * in the GrGpu object that the buffer is played back into. The buffer requires VB and IB pools to
51 GrInOrderDrawBuffer(GrGpu* gpu,
64 * This plays the queued up draws to its GrGpu target. It also resets this object (i.e. flushing
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLTexture.cpp 22 fTexParamsTimestamp = GrGpu::kExpiredTimestamp;
GrGLProgramDesc.h 13 #include "GrGpu.h"
57 GrGpu::DrawType);
66 GrGpu::DrawType,
GrGLProgram.cpp 94 GrGpu::DrawType drawType,
220 void GrGLProgram::setMatrixAndRenderTargetHeight(GrGpu::DrawType drawType,
233 if (GrGpu::IsPathRenderingDrawType(drawType)) {
GrGLProgramDesc.cpp 196 GrGpu::DrawType drawType,
299 header->fEmitsPointSize = GrGpu::kDrawPoints_DrawType == drawType;
312 GrGpu::IsPathRenderingDrawType(drawType) &&
320 bool defaultToUniformInputs = GrGpu::IsPathRenderingDrawType(drawType) ||
  /external/skia/include/gpu/
GrRenderTarget.h 147 GrRenderTarget(GrGpu* gpu,
GrSurface.h 139 GrSurface(GrGpu* gpu, bool isWrapped, const GrTextureDesc& desc)
GrContext.h 28 class GrGpu;
    [all...]
  /external/skia/src/gpu/
GrGpu.h 24 class GrGpu : public GrDrawTarget {
43 * Create an instance of GrGpu that matches the specified backend. If the requested backend is
45 * fully constructed and should not be used by GrGpu until after this function returns.
47 static GrGpu* Create(GrBackend, GrBackendContext, GrContext* context);
51 GrGpu(GrContext* context);
52 virtual ~GrGpu();
58 * The GrGpu object normally assumes that no outsider is setting state
60 * the GrGpu that the state was modified and it shouldn't make assumptions
245 * Called to tell GrGpu that all GrGpuObjects have been lost and should
251 * Called to tell GrGpu to release all GrGpuObjects. Overrides must cal
    [all...]
GrStencilBuffer.h 56 GrStencilBuffer(GrGpu* gpu, bool isWrapped, int width, int height, int bits, int sampleCnt)
GrLayerCache.cpp 9 #include "GrGpu.h"
44 GrLayerCache::GrLayerCache(GrGpu* gpu)
GrPathRendererChain.cpp 15 #include "GrGpu.h"
80 GrGpu* gpu = fOwner->getGpu();
GrStencilAndCoverPathRenderer.cpp 13 #include "GrGpu.h"
27 GrStencilAndCoverPathRenderer::GrStencilAndCoverPathRenderer(GrGpu* gpu) {
GrClipMaskManager.cpp 14 #include "GrGpu.h"
37 void setup_drawstate_aaclip(GrGpu* gpu,
64 GrGpu* gpu,
751 drawState->disableState(GrGpu::kModifyStencilClip_StateBit);
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 40 GrGpu::DrawType drawType,
117 bool hasVertexCode = !(GrGpu::kDrawPath_DrawType == drawType ||
118 GrGpu::kDrawPaths_DrawType == drawType);
138 header->fEmitsPointSize = GrGpu::kDrawPoints_DrawType == drawType;
GrGLTexture.cpp 22 fTexParamsTimestamp = GrGpu::kExpiredTimestamp;
  /external/chromium_org/third_party/skia/tests/
GLProgramsTest.cpp 44 GrGpu::DrawType drawType) {
45 bool isPathRendering = GrGpu::IsPathRenderingDrawType(drawType);
261 GrGpu::DrawType drawType = usePathRendering ? GrGpu::kDrawPath_DrawType :
262 GrGpu::kDrawPoints_DrawType;
  /external/skia/bench/
GrResourceCacheBench.cpp 89 static void populate_cache(GrResourceCache* cache, GrGpu* gpu, int resourceCount) {
184 GrGpu* gpu = canvas->getGrContext()->getGpu();
220 GrGpu* gpu = canvas->getGrContext()->getGpu();
  /external/chromium_org/third_party/skia/include/gpu/
GrContext.h 27 class GrGpu;
    [all...]

Completed in 5138 milliseconds

1 23 4 5