aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrSamplerState.h
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-12-12 16:10:08 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-12-12 16:10:08 +0000
commit1fadb20c50c2302565f73ae12057a6f5d22192c7 (patch)
tree2cadd3d9bd7177e048a344ddab29bee86621aa1a /include/gpu/GrSamplerState.h
parent4ad7e580e0caab31eb2dd8a682af0750391d89df (diff)
Remove static initiazled gClampNearest in gpu backend
Review URL: http://codereview.appspot.com/5487044/ git-svn-id: http://skia.googlecode.com/svn/trunk@2851 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu/GrSamplerState.h')
-rw-r--r--include/gpu/GrSamplerState.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/gpu/GrSamplerState.h b/include/gpu/GrSamplerState.h
index 42e9d0d6eb..c0f7fd462b 100644
--- a/include/gpu/GrSamplerState.h
+++ b/include/gpu/GrSamplerState.h
@@ -224,8 +224,6 @@ public:
}
}
- static const GrSamplerState& ClampNearest() { return gClampNearest; }
-
private:
WrapMode fWrapX : 8;
WrapMode fWrapY : 8;
@@ -244,8 +242,6 @@ private:
uint8_t fKernelWidth;
float fImageIncrement[2];
float fKernel[MAX_KERNEL_WIDTH];
-
- static const GrSamplerState gClampNearest;
};
#endif