From 5cf652629fb40796cd2e0ab17c3617ed52365473 Mon Sep 17 00:00:00 2001
From: pans <pans@454eff88-639b-444f-9e54-f578c98de674>
Date: 星期五, 18 八月 2017 10:32:05 +0800
Subject: [PATCH] capnp client fix bug
---
RtspFace/PL_Paint.h | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/RtspFace/PL_Paint.h b/RtspFace/PL_Paint.h
index 9abfaa0..6a8c402 100644
--- a/RtspFace/PL_Paint.h
+++ b/RtspFace/PL_Paint.h
@@ -4,6 +4,8 @@
#include "PipeLine.h"
#include "GraphicHelper.h"
+#define ENABLE_WTEXT
+
/*
PLPaint Language:
COLOR F/B,R,G,B,A
@@ -36,11 +38,7 @@
PLPLType() : val_i(0) {}
PLPLType(int _val_i) : val_i(_val_i) {}
PLPLType(float _val_f) : val_f(_val_f) {}
- PLPLType(const char* _val_s)
- {
- for (int i = 0; i < sizeof(val_s); i++)
- val_s[i] = _val_s[i];
- }
+ PLPLType(const char* _val_s);
PLPLType(const wchar_t* _val_s);
};
@@ -63,6 +61,8 @@
{}
~PLPLContext();
+
+ void clear();
};
struct PL_Paint_Config
@@ -89,8 +89,8 @@
virtual bool gain(PipeMaterial& pm);
private:
- static bool pay_breaker_MBFT_YUV(const PipeMaterial* pm, void* args);
-
+ static bool pay_breaker_MBFT(const PipeMaterial* pm, void* args);
+
private:
void* internal;
};
--
Gitblit v1.8.0