From: reed@google.com Date: Fri, 18 Feb 2011 21:07:35 +0000 (+0000) Subject: can't use this in STATIC_ASSERT on windows X-Git-Tag: submit/tizen/20180928.044319~18950 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aff86f3fe3f286c5e93cb1f9d3f1c3a819b8cc12;p=platform%2Fupstream%2FlibSkiaSharp.git can't use this in STATIC_ASSERT on windows git-svn-id: http://skia.googlecode.com/svn/trunk@820 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/gpu/include/GrGLIRect.h b/gpu/include/GrGLIRect.h index b8638c0af9..80237d9196 100644 --- a/gpu/include/GrGLIRect.h +++ b/gpu/include/GrGLIRect.h @@ -14,7 +14,7 @@ struct GrGLIRect { GLsizei fHeight; void pushToGLViewport() const { - GR_GL(Viewport(fLeft, fBottom, fWidth, fHeight)); + GR_GL(Viewport(fLeft, fBottom, fWidth, fHeight)); } void pushToGLScissor() const { @@ -22,7 +22,7 @@ struct GrGLIRect { } void setFromGLViewport() { - GR_STATIC_ASSERT(sizeof(*this) == 4*sizeof(GLint)); + GR_STATIC_ASSERT(sizeof(GrGLIRect) == 4*sizeof(GLint)); GR_GL_GetIntegerv(GL_VIEWPORT, (GLint*) this); } @@ -61,4 +61,4 @@ struct GrGLIRect { bool operator !=(const GrGLIRect& glRect) const {return !(*this == glRect);} }; -#endif \ No newline at end of file +#endif