mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d0562bfee9
This doesn't involve any Makefile change so should be relatively safe. This is needed for: * BUILTIN_FUNCTION_EMULATION (r773,774), blocker for 665578 * extensions validation in shaders (r745), blocker for 684853 * major performance improvements and bug fixes
25 lines
934 B
Diff
25 lines
934 B
Diff
# HG changeset patch
|
|
# Parent 693fb23429fdbf40e272e1c48887479cc597e0bc
|
|
diff --git a/gfx/angle/src/libGLESv2/VertexDataManager.h b/gfx/angle/src/libGLESv2/VertexDataManager.h
|
|
--- a/gfx/angle/src/libGLESv2/VertexDataManager.h
|
|
+++ b/gfx/angle/src/libGLESv2/VertexDataManager.h
|
|
@@ -127,17 +127,17 @@ class VertexDataManager
|
|
|
|
Context *const mContext;
|
|
IDirect3DDevice9 *const mDevice;
|
|
|
|
StreamingVertexBuffer *mStreamingBuffer;
|
|
|
|
bool mDirtyCurrentValue[MAX_VERTEX_ATTRIBS];
|
|
StreamingVertexBuffer *mCurrentValueBuffer[MAX_VERTEX_ATTRIBS];
|
|
- UINT mCurrentValueOffsets[MAX_VERTEX_ATTRIBS];
|
|
+ std::size_t mCurrentValueOffsets[MAX_VERTEX_ATTRIBS];
|
|
|
|
// Attribute format conversion
|
|
struct FormatConverter
|
|
{
|
|
bool identity;
|
|
std::size_t outputElementSize;
|
|
void (*convertArray)(const void *in, std::size_t stride, std::size_t n, void *out);
|
|
D3DDECLTYPE d3dDeclType;
|