File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class CDListGeomManager : public CGeomManager {
3434 CDListGeomManager (CGLContext& context);
3535 virtual ~CDListGeomManager () {}
3636
37- void PrimChanged (unsigned char prim);
37+ void PrimChanged (GLenum prim);
3838
3939 // user state
4040
Original file line number Diff line number Diff line change @@ -338,10 +338,10 @@ class CUpdateRendererContextCmd : public CDListCmd {
338338};
339339
340340class CUpdatePrimCmd : public CDListCmd {
341- unsigned char Prim;
341+ GLenum Prim;
342342
343343public:
344- CUpdatePrimCmd (unsigned char prim)
344+ CUpdatePrimCmd (GLenum prim)
345345 : Prim(prim)
346346 {
347347 }
@@ -352,7 +352,7 @@ class CUpdatePrimCmd : public CDListCmd {
352352 }
353353};
354354
355- void CDListGeomManager::PrimChanged (unsigned char prim)
355+ void CDListGeomManager::PrimChanged (GLenum prim)
356356{
357357 GLContext.PrimChanged ();
358358 GLContext.GetDListManager ().GetOpenDList () += CUpdatePrimCmd (prim);
You can’t perform that action at this time.
0 commit comments